Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: net/tools/flip_server/mem_cache_test.cc

Issue 683113005: Update from chromium https://crrev.com/302282 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/tools/flip_server/mem_cache.h ('k') | net/tools/flip_server/output_ordering.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/tools/flip_server/mem_cache.h" 5 #include "net/tools/flip_server/mem_cache.h"
6 6
7 #include "net/tools/balsa/balsa_headers.h" 7 #include "net/tools/balsa/balsa_headers.h"
8 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
9 9
10 namespace net { 10 namespace net {
11 11
12 namespace { 12 namespace {
13 13
14 class MemoryCacheWithFakeReadToString : public MemoryCache { 14 class MemoryCacheWithFakeReadToString : public MemoryCache {
15 public: 15 public:
16 virtual ~MemoryCacheWithFakeReadToString() {} 16 ~MemoryCacheWithFakeReadToString() override {}
17 17
18 virtual void ReadToString(const char* filename, 18 void ReadToString(const char* filename, std::string* output) override {
19 std::string* output) override {
20 *output = data_map_[filename]; 19 *output = data_map_[filename];
21 } 20 }
22 21
23 std::map<std::string, std::string> data_map_; 22 std::map<std::string, std::string> data_map_;
24 }; 23 };
25 24
26 class FlipMemoryCacheTest : public ::testing::Test { 25 class FlipMemoryCacheTest : public ::testing::Test {
27 public: 26 public:
28 FlipMemoryCacheTest() : mem_cache_(new MemoryCacheWithFakeReadToString) {} 27 FlipMemoryCacheTest() : mem_cache_(new MemoryCacheWithFakeReadToString) {}
29 28
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 91
93 mem_cache_->ReadAndStoreFileContents("./hello.http"); 92 mem_cache_->ReadAndStoreFileContents("./hello.http");
94 hello_html = mem_cache_->GetFileData("hello.html"); 93 hello_html = mem_cache_->GetFileData("hello.html");
95 ASSERT_FALSE(NULL == hello_html); 94 ASSERT_FALSE(NULL == hello_html);
96 ASSERT_EQ(hello_html, mem_cache_->GetFileData("hello.http")); 95 ASSERT_EQ(hello_html, mem_cache_->GetFileData("hello.http"));
97 } 96 }
98 97
99 } // namespace 98 } // namespace
100 99
101 } // namespace net 100 } // namespace net
OLDNEW
« no previous file with comments | « net/tools/flip_server/mem_cache.h ('k') | net/tools/flip_server/output_ordering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698