OLD | NEW |
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 "chrome/browser/prefs/pref_hash_calculator.h" | 5 #include "chrome/browser/prefs/pref_hash_calculator.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 TEST(PrefHashCalculatorTest, CatchHashChanges) { | 79 TEST(PrefHashCalculatorTest, CatchHashChanges) { |
80 static const char kSeed[] = "0123456789ABCDEF0123456789ABCDEF"; | 80 static const char kSeed[] = "0123456789ABCDEF0123456789ABCDEF"; |
81 static const char kDeviceId[] = "test_device_id1"; | 81 static const char kDeviceId[] = "test_device_id1"; |
82 | 82 |
83 scoped_ptr<base::Value> null_value(base::Value::CreateNullValue()); | 83 scoped_ptr<base::Value> null_value(base::Value::CreateNullValue()); |
84 scoped_ptr<base::Value> bool_value(new base::FundamentalValue(false)); | 84 scoped_ptr<base::Value> bool_value(new base::FundamentalValue(false)); |
85 scoped_ptr<base::Value> int_value( | 85 scoped_ptr<base::Value> int_value( |
86 base::Value::CreateIntegerValue(1234567890)); | 86 base::Value::CreateIntegerValue(1234567890)); |
87 scoped_ptr<base::Value> double_value( | 87 scoped_ptr<base::Value> double_value( |
88 new base::FundamentalValue(123.0987654321)); | 88 new base::FundamentalValue(123.0987654321)); |
89 scoped_ptr<base::Value> string_value(base::Value::CreateStringValue( | 89 scoped_ptr<base::Value> string_value( |
90 "testing with special chars:\n<>{}:^^@#$\\/")); | 90 new base::StringValue("testing with special chars:\n<>{}:^^@#$\\/")); |
91 | 91 |
92 // For legacy reasons, we have to support pruning of empty lists/dictionaries | 92 // For legacy reasons, we have to support pruning of empty lists/dictionaries |
93 // and nested empty ists/dicts in the hash generation algorithm. | 93 // and nested empty ists/dicts in the hash generation algorithm. |
94 scoped_ptr<base::DictionaryValue> nested_empty_dict( | 94 scoped_ptr<base::DictionaryValue> nested_empty_dict( |
95 new base::DictionaryValue); | 95 new base::DictionaryValue); |
96 nested_empty_dict->Set("a", new base::DictionaryValue); | 96 nested_empty_dict->Set("a", new base::DictionaryValue); |
97 nested_empty_dict->Set("b", new base::ListValue); | 97 nested_empty_dict->Set("b", new base::ListValue); |
98 scoped_ptr<base::ListValue> nested_empty_list( | 98 scoped_ptr<base::ListValue> nested_empty_list( |
99 new base::ListValue); | 99 new base::ListValue); |
100 nested_empty_list->Append(new base::DictionaryValue); | 100 nested_empty_list->Append(new base::DictionaryValue); |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 // kSeed. | 263 // kSeed. |
264 static const char kTestedHash[] = | 264 static const char kTestedHash[] = |
265 "842C71283B9C3D86AA934CD639FDB0428BF0E2B6EC8537A21575CC4C4FA0A615"; | 265 "842C71283B9C3D86AA934CD639FDB0428BF0E2B6EC8537A21575CC4C4FA0A615"; |
266 | 266 |
267 const base::StringValue string_value(kPrefValue); | 267 const base::StringValue string_value(kPrefValue); |
268 EXPECT_EQ(PrefHashCalculator::VALID, | 268 EXPECT_EQ(PrefHashCalculator::VALID, |
269 PrefHashCalculator(kSeed, kEmptyDeviceId, | 269 PrefHashCalculator(kSeed, kEmptyDeviceId, |
270 base::Bind(&MockGetLegacyDeviceId)).Validate( | 270 base::Bind(&MockGetLegacyDeviceId)).Validate( |
271 kPrefPath, &string_value, kTestedHash)); | 271 kPrefPath, &string_value, kTestedHash)); |
272 } | 272 } |
OLD | NEW |