OLD | NEW |
---|---|
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 #ifndef BASE_TEST_VALUES_TEST_UTIL_H_ | 5 #ifndef BASE_TEST_VALUES_TEST_UTIL_H_ |
6 #define BASE_TEST_VALUES_TEST_UTIL_H_ | 6 #define BASE_TEST_VALUES_TEST_UTIL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | |
11 #include "base/string_piece.h" | |
12 | |
10 namespace base { | 13 namespace base { |
11 class DictionaryValue; | 14 class DictionaryValue; |
12 class ListValue; | 15 class ListValue; |
13 class StringValue; | 16 class StringValue; |
17 class Value; | |
14 | 18 |
15 // All the functions below expect that the value for the given key in | 19 // All the functions below expect that the value for the given key in |
16 // the given dictionary equals the given expected value. | 20 // the given dictionary equals the given expected value. |
17 | 21 |
18 void ExpectDictBooleanValue(bool expected_value, | 22 void ExpectDictBooleanValue(bool expected_value, |
19 const DictionaryValue& value, | 23 const DictionaryValue& value, |
20 const std::string& key); | 24 const std::string& key); |
21 | 25 |
22 void ExpectDictDictionaryValue(const DictionaryValue& expected_value, | 26 void ExpectDictDictionaryValue(const DictionaryValue& expected_value, |
23 const DictionaryValue& value, | 27 const DictionaryValue& value, |
24 const std::string& key); | 28 const std::string& key); |
25 | 29 |
26 void ExpectDictIntegerValue(int expected_value, | 30 void ExpectDictIntegerValue(int expected_value, |
27 const DictionaryValue& value, | 31 const DictionaryValue& value, |
28 const std::string& key); | 32 const std::string& key); |
29 | 33 |
30 void ExpectDictListValue(const ListValue& expected_value, | 34 void ExpectDictListValue(const ListValue& expected_value, |
31 const DictionaryValue& value, | 35 const DictionaryValue& value, |
32 const std::string& key); | 36 const std::string& key); |
33 | 37 |
34 void ExpectDictStringValue(const std::string& expected_value, | 38 void ExpectDictStringValue(const std::string& expected_value, |
35 const DictionaryValue& value, | 39 const DictionaryValue& value, |
36 const std::string& key); | 40 const std::string& key); |
37 | 41 |
38 // Takes ownership of |actual|. | 42 // Takes ownership of |actual|. |
39 void ExpectStringValue(const std::string& expected_str, | 43 void ExpectStringValue(const std::string& expected_str, |
40 StringValue* actual); | 44 StringValue* actual); |
41 | 45 |
46 // Parses |json| as JSON, allowing trailing commas, and returns the | |
jamesr
2012/12/13 23:24:41
I'm not sure I understand the trailing commas bit.
Jeffrey Yasskin
2012/12/13 23:29:27
No, I tend to find that allowing trailing commas m
| |
47 // resulting value. If the json fails to parse, causes an EXPECT | |
48 // failure and returns the Null Value (but never a NULL pointer). | |
49 scoped_ptr<Value> ParseJson(base::StringPiece json); | |
50 | |
42 } // namespace base | 51 } // namespace base |
43 | 52 |
44 #endif // BASE_TEST_VALUES_TEST_UTIL_H_ | 53 #endif // BASE_TEST_VALUES_TEST_UTIL_H_ |
OLD | NEW |