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

Side by Side Diff: chrome/browser/invalidation/invalidator_storage_unittest.cc

Issue 196793010: Move IsStringASCII/UTF8 to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/internal_auth.cc ('k') | chrome/browser/net/firefox_proxy_settings.cc » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/invalidation/invalidator_storage.h" 5 #include "chrome/browser/invalidation/invalidator_storage.h"
6 6
7 #include "base/prefs/pref_service.h" 7 #include "base/prefs/pref_service.h"
8 #include "base/strings/string_util.h" 8 #include "base/strings/string_util.h"
9 #include "chrome/common/pref_names.h" 9 #include "chrome/common/pref_names.h"
10 #include "chrome/test/base/testing_pref_service_syncable.h" 10 #include "chrome/test/base/testing_pref_service_syncable.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 InvalidatorStorage storage(&pref_service_); 48 InvalidatorStorage storage(&pref_service_);
49 const std::string client_id("fK6eDzAIuKqx9A4+93bljg=="); 49 const std::string client_id("fK6eDzAIuKqx9A4+93bljg==");
50 50
51 storage.SetInvalidatorClientId(client_id); 51 storage.SetInvalidatorClientId(client_id);
52 EXPECT_EQ(client_id, storage.GetInvalidatorClientId()); 52 EXPECT_EQ(client_id, storage.GetInvalidatorClientId());
53 } 53 }
54 54
55 TEST_F(InvalidatorStorageTest, SetGetBootstrapData) { 55 TEST_F(InvalidatorStorageTest, SetGetBootstrapData) {
56 InvalidatorStorage storage(&pref_service_); 56 InvalidatorStorage storage(&pref_service_);
57 const std::string mess("n\0tK\0\0l\344", 8); 57 const std::string mess("n\0tK\0\0l\344", 8);
58 ASSERT_FALSE(IsStringUTF8(mess)); 58 ASSERT_FALSE(base::IsStringUTF8(mess));
59 59
60 storage.SetBootstrapData(mess); 60 storage.SetBootstrapData(mess);
61 EXPECT_EQ(mess, storage.GetBootstrapData()); 61 EXPECT_EQ(mess, storage.GetBootstrapData());
62 } 62 }
63 63
64 TEST_F(InvalidatorStorageTest, SaveGetInvalidations_Empty) { 64 TEST_F(InvalidatorStorageTest, SaveGetInvalidations_Empty) {
65 InvalidatorStorage storage(&pref_service_); 65 InvalidatorStorage storage(&pref_service_);
66 syncer::UnackedInvalidationsMap empty_map; 66 syncer::UnackedInvalidationsMap empty_map;
67 ASSERT_TRUE(empty_map.empty()); 67 ASSERT_TRUE(empty_map.empty());
68 68
(...skipping 26 matching lines...) Expand all
95 map.insert(std::make_pair(storage2.object_id(), storage2)); 95 map.insert(std::make_pair(storage2.object_id(), storage2));
96 96
97 storage.SetSavedInvalidations(map); 97 storage.SetSavedInvalidations(map);
98 syncer::UnackedInvalidationsMap restored_map = 98 syncer::UnackedInvalidationsMap restored_map =
99 storage.GetSavedInvalidations(); 99 storage.GetSavedInvalidations();
100 100
101 EXPECT_THAT(map, syncer::test_util::Eq(restored_map)); 101 EXPECT_THAT(map, syncer::test_util::Eq(restored_map));
102 } 102 }
103 103
104 } // namespace invalidation 104 } // namespace invalidation
OLDNEW
« no previous file with comments | « chrome/browser/internal_auth.cc ('k') | chrome/browser/net/firefox_proxy_settings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698