OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "content/common/origin_trials/trial_token.h" | 5 #include "content/common/origin_trials/trial_token.h" |
6 | 6 |
7 #include "base/macros.h" | 7 #include "base/macros.h" |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/strings/string_piece.h" | 9 #include "base/strings/string_piece.h" |
10 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 // 0x96, 0x25, 0xda, 0x70, 0xaa, 0xb9, 0xfd, 0x53, 0x5d, 0x51, 0x3e, | 42 // 0x96, 0x25, 0xda, 0x70, 0xaa, 0xb9, 0xfd, 0x53, 0x5d, 0x51, 0x3e, |
43 // 0x16, 0xab, 0xb4, 0x86, 0xea, 0xf3, 0x35, 0xc6, 0xca | 43 // 0x16, 0xab, 0xb4, 0x86, 0xea, 0xf3, 0x35, 0xc6, 0xca |
44 const uint8_t kTestPublicKey2[] = { | 44 const uint8_t kTestPublicKey2[] = { |
45 0x50, 0x07, 0x4d, 0x76, 0x55, 0x56, 0x42, 0x17, 0x2d, 0x8a, 0x9c, | 45 0x50, 0x07, 0x4d, 0x76, 0x55, 0x56, 0x42, 0x17, 0x2d, 0x8a, 0x9c, |
46 0x47, 0x96, 0x25, 0xda, 0x70, 0xaa, 0xb9, 0xfd, 0x53, 0x5d, 0x51, | 46 0x47, 0x96, 0x25, 0xda, 0x70, 0xaa, 0xb9, 0xfd, 0x53, 0x5d, 0x51, |
47 0x3e, 0x16, 0xab, 0xb4, 0x86, 0xea, 0xf3, 0x35, 0xc6, 0xca, | 47 0x3e, 0x16, 0xab, 0xb4, 0x86, 0xea, 0xf3, 0x35, 0xc6, 0xca, |
48 }; | 48 }; |
49 | 49 |
50 // This is a good trial token, signed with the above test private key. | 50 // This is a good trial token, signed with the above test private key. |
51 const char* kSampleToken = | 51 const char* kSampleToken = |
52 "1|UsEO0cNxoUtBnHDJdGPWTlXuLENjXcEIPL7Bs7sbvicPCcvAtyqhQuTJ9h/u1R3VZpWigtI+" | 52 "AesWbWX2tRJ0+oGm0ybp9ccm8YTjbV0z5aMVyw2a5zr59hjUU9zLFTgPSz0SPsSU" |
53 "SdUwk7Dyk/qbDw==|https://valid.example.com|Frobulate|1458766277"; | 53 "0c4y51N/9Gx/oLI9W93ZHQkAAABZeyJvcmlnaW4iOiAiaHR0cHM6Ly92YWxpZC5l" |
54 const uint8_t kExpectedVersion = 1; | 54 "eGFtcGxlLmNvbTo0NDMiLCAiZmVhdHVyZSI6ICJGcm9idWxhdGUiLCAiZXhwaXJ5" |
55 const char* kExpectedSignature = | 55 "IjogMTQ1ODc2NjI3N30="; |
56 "UsEO0cNxoUtBnHDJdGPWTlXuLENjXcEIPL7Bs7sbvicPCcvAtyqhQuTJ9h/u1R3VZpWigtI+S" | 56 |
57 "dUwk7Dyk/qbDw=="; | |
58 const char* kExpectedData = "https://valid.example.com|Frobulate|1458766277"; | |
59 const char* kExpectedFeatureName = "Frobulate"; | 57 const char* kExpectedFeatureName = "Frobulate"; |
60 const char* kExpectedOrigin = "https://valid.example.com"; | 58 const char* kExpectedOrigin = "https://valid.example.com"; |
61 const uint64_t kExpectedExpiry = 1458766277; | 59 const uint64_t kExpectedExpiry = 1458766277; |
62 | 60 |
63 // The token should not be valid for this origin, or for this feature. | 61 // The token should not be valid for this origin, or for this feature. |
64 const char* kInvalidOrigin = "https://invalid.example.com"; | 62 const char* kInvalidOrigin = "https://invalid.example.com"; |
65 const char* kInsecureOrigin = "http://valid.example.com"; | 63 const char* kInsecureOrigin = "http://valid.example.com"; |
66 const char* kInvalidFeatureName = "Grokalyze"; | 64 const char* kInvalidFeatureName = "Grokalyze"; |
67 | 65 |
68 // The token should be valid if the current time is kValidTimestamp or earlier. | 66 // The token should be valid if the current time is kValidTimestamp or earlier. |
69 double kValidTimestamp = 1458766276.0; | 67 double kValidTimestamp = 1458766276.0; |
70 | 68 |
71 // The token should be invalid if the current time is kInvalidTimestamp or | 69 // The token should be invalid if the current time is kInvalidTimestamp or |
72 // later. | 70 // later. |
73 double kInvalidTimestamp = 1458766278.0; | 71 double kInvalidTimestamp = 1458766278.0; |
74 | 72 |
75 // Well-formed trial token with an invalid signature. | 73 // Well-formed trial token with an invalid signature. |
76 const char* kInvalidSignatureToken = | 74 const char* kInvalidSignatureToken = |
77 "1|CO8hDne98QeFeOJ0DbRZCBN3uE0nyaPgaLlkYhSWnbRoDfEAg+TXELaYfQPfEvKYFauBg/" | 75 "AYeNXSDktgG9p4ns5B1WKsLq2TytMxfR4whfbi+oyT0rXyzh+qXYfxbDMGmyjU2Z" |
78 "hnxmba765hz0mXMc==|https://valid.example.com|Frobulate|1458766277"; | 76 "lEJ16vQObMXJoOaYUqd8xwkAAABZeyJvcmlnaW4iOiAiaHR0cHM6Ly92YWxpZC5l" |
| 77 "eGFtcGxlLmNvbTo0NDMiLCAiZmVhdHVyZSI6ICJGcm9idWxhdGUiLCAiZXhwaXJ5" |
| 78 "IjogMTQ1ODc2NjI3N30="; |
| 79 |
| 80 // Trial token truncated in the middle of the length field; too short to |
| 81 // possibly be valid. |
| 82 const char kTruncatedToken[] = |
| 83 "AesWbWX2tRJ0+oGm0ybp9ccm8YTjbV0z5aMVyw2a5zr59hjUU9zLFTgPSz0SPsSU" |
| 84 "0c4y51N/9Gx/oLI9W93ZHQkA"; |
| 85 |
| 86 // Trial token with an incorrectly-declared length, but with a valid signature. |
| 87 const char kIncorrectLengthToken[] = |
| 88 "AQruItutcZelo3W81CdbVHuUFygSJ6Zpktgnl1JIE+QHEMz0ZqjITe1nWdq7c1VC" |
| 89 "EdMFVozO5VIgX3mUWYLsTw4AAABaeyJvcmlnaW4iOiAiaHR0cHM6Ly92YWxpZC5l" |
| 90 "eGFtcGxlLmNvbTo0NDMiLCAiZmVhdHVyZSI6ICJGcm9idWxhdGUiLCAiZXhwaXJ5" |
| 91 "IjogMTQ1ODc2NjI3N30="; |
| 92 |
| 93 // Trial token with a misidentified version (2). |
| 94 const char kIncorrectVersionToken[] = |
| 95 "Ap+Q/Qm0ELadZql+dlEGSwnAVsFZKgCEtUZg8idQC3uekkIeSZIY1tftoYdrwhqj" |
| 96 "7FO5L22sNvkZZnacLvmfNwsAAABZeyJvcmlnaW4iOiAiaHR0cHM6Ly92YWxpZC5l" |
| 97 "eGFtcGxlLmNvbTo0NDMiLCAiZmVhdHVyZSI6ICJGcm9idWxhdGUiLCAiZXhwaXJ5" |
| 98 "IjogMTQ1ODc2NjI3N30="; |
| 99 |
| 100 const char kSampleTokenJSON[] = |
| 101 "{\"origin\": \"https://valid.example.com:443\", \"feature\": " |
| 102 "\"Frobulate\", \"expiry\": 1458766277}"; |
79 | 103 |
80 // Various ill-formed trial tokens. These should all fail to parse. | 104 // Various ill-formed trial tokens. These should all fail to parse. |
81 const char* kInvalidTokens[] = { | 105 const char* kInvalidTokens[] = { |
82 // Invalid - only one part | 106 // Invalid - Not JSON at all |
83 "abcde", | 107 "abcde", |
84 // Not enough parts | 108 // Invalid JSON |
85 "https://valid.example.com|FeatureName|1458766277", | 109 "{", |
86 "Signature|https://valid.example.com|FeatureName|1458766277", | 110 // Not an object |
87 // Non-numeric version | 111 "\"abcde\"", |
88 "a|Signature|https://valid.example.com|FeatureName|1458766277", | 112 "123.4", |
89 "1x|Signature|https://valid.example.com|FeatureName|1458766277", | 113 "[0, 1, 2]", |
90 // Unsupported version (< min, > max, negative, overflow) | 114 // Missing keys |
91 "0|Signature|https://valid.example.com|FeatureName|1458766277", | 115 "{}", |
92 "2|Signature|https://valid.example.com|FeatureName|1458766277", | 116 "{\"something\": 1}", |
93 "-1|Signature|https://valid.example.com|FeatureName|1458766277", | 117 "{\"origin\": \"https://a.a\"}", |
94 "99999|Signature|https://valid.example.com|FeatureName|1458766277", | 118 "{\"origin\": \"https://a.a\", \"feature\": \"a\"}" |
95 // Delimiter in feature name | 119 "{\"origin\": \"https://a.a\", \"expiry\": 1458766277}", |
96 "1|Signature|https://valid.example.com|Feature|Name|1458766277", | 120 "{\"feature\": \"FeatureName\", \"expiry\": 1458766277}", |
97 // Extra string field | 121 // Incorrect types |
98 "1|Signature|https://valid.example.com|FeatureName|1458766277|ExtraField", | 122 "{\"origin\": 1, \"feature\": \"a\", \"expiry\": 1458766277}", |
99 // Extra numeric field | 123 "{\"origin\": \"https://a.a\", \"feature\": 1, \"expiry\": 1458766277}", |
100 "1|Signature|https://valid.example.com|FeatureName|1458766277|1458766277", | 124 "{\"origin\": \"https://a.a\", \"feature\": \"a\", \"expiry\": \"1\"}", |
101 // Non-numeric expiry timestamp | |
102 "1|Signature|https://valid.example.com|FeatureName|abcdefghij", | |
103 "1|Signature|https://valid.example.com|FeatureName|1458766277x", | |
104 // Negative expiry timestamp | 125 // Negative expiry timestamp |
105 "1|Signature|https://valid.example.com|FeatureName|-1458766277", | 126 "{\"origin\": \"https://a.a\", \"feature\": \"a\", \"expiry\": -1}", |
106 // Origin not a proper origin URL | 127 // Origin not a proper origin URL |
107 "1|Signature|abcdef|FeatureName|1458766277", | 128 "{\"origin\": \"abcdef\", \"feature\": \"a\", \"expiry\": 1458766277}", |
108 "1|Signature|data:text/plain,abcdef|FeatureName|1458766277", | 129 "{\"origin\": \"data:text/plain,abcdef\", \"feature\": \"a\", \"expiry\": " |
109 "1|Signature|javascript:alert(1)|FeatureName|1458766277"}; | 130 "1458766277}", |
| 131 "{\"origin\": \"javascript:alert(1)\", \"feature\": \"a\", \"expiry\": " |
| 132 "1458766277}"}; |
110 const size_t kNumInvalidTokens = arraysize(kInvalidTokens); | 133 const size_t kNumInvalidTokens = arraysize(kInvalidTokens); |
111 | 134 |
112 } // namespace | 135 } // namespace |
113 | 136 |
114 class TrialTokenTest : public testing::Test { | 137 class TrialTokenTest : public testing::Test { |
115 public: | 138 public: |
116 TrialTokenTest() | 139 TrialTokenTest() |
117 : expected_origin_(GURL(kExpectedOrigin)), | 140 : expected_origin_(GURL(kExpectedOrigin)), |
118 invalid_origin_(GURL(kInvalidOrigin)), | 141 invalid_origin_(GURL(kInvalidOrigin)), |
119 insecure_origin_(GURL(kInsecureOrigin)), | 142 insecure_origin_(GURL(kInsecureOrigin)), |
| 143 expected_expiry_(base::Time::FromDoubleT(kExpectedExpiry)), |
| 144 valid_timestamp_(base::Time::FromDoubleT(kValidTimestamp)), |
| 145 invalid_timestamp_(base::Time::FromDoubleT(kInvalidTimestamp)), |
120 correct_public_key_( | 146 correct_public_key_( |
121 base::StringPiece(reinterpret_cast<const char*>(kTestPublicKey), | 147 base::StringPiece(reinterpret_cast<const char*>(kTestPublicKey), |
122 arraysize(kTestPublicKey))), | 148 arraysize(kTestPublicKey))), |
123 incorrect_public_key_( | 149 incorrect_public_key_( |
124 base::StringPiece(reinterpret_cast<const char*>(kTestPublicKey2), | 150 base::StringPiece(reinterpret_cast<const char*>(kTestPublicKey2), |
125 arraysize(kTestPublicKey2))) {} | 151 arraysize(kTestPublicKey2))) {} |
126 | 152 |
127 protected: | 153 protected: |
| 154 scoped_ptr<std::string> Extract(const std::string& token_text, |
| 155 base::StringPiece public_key) { |
| 156 return TrialToken::Extract(token_text, public_key); |
| 157 } |
| 158 scoped_ptr<TrialToken> Parse(const std::string& token_payload) { |
| 159 return TrialToken::Parse(token_payload); |
| 160 } |
| 161 |
128 bool ValidateOrigin(TrialToken* token, const url::Origin origin) { | 162 bool ValidateOrigin(TrialToken* token, const url::Origin origin) { |
129 return token->ValidateOrigin(origin); | 163 return token->ValidateOrigin(origin); |
130 } | 164 } |
131 | 165 |
132 bool ValidateFeatureName(TrialToken* token, const char* feature_name) { | 166 bool ValidateFeatureName(TrialToken* token, const char* feature_name) { |
133 return token->ValidateFeatureName(feature_name); | 167 return token->ValidateFeatureName(feature_name); |
134 } | 168 } |
135 | 169 |
136 bool ValidateDate(TrialToken* token, const base::Time& now) { | 170 bool ValidateDate(TrialToken* token, const base::Time& now) { |
137 return token->ValidateDate(now); | 171 return token->ValidateDate(now); |
138 } | 172 } |
139 | 173 |
140 bool ValidateSignature(TrialToken* token, | |
141 const base::StringPiece& public_key) { | |
142 return token->ValidateSignature(public_key); | |
143 } | |
144 | |
145 base::StringPiece correct_public_key() { return correct_public_key_; } | 174 base::StringPiece correct_public_key() { return correct_public_key_; } |
146 base::StringPiece incorrect_public_key() { return incorrect_public_key_; } | 175 base::StringPiece incorrect_public_key() { return incorrect_public_key_; } |
147 | 176 |
148 const url::Origin expected_origin_; | 177 const url::Origin expected_origin_; |
149 const url::Origin invalid_origin_; | 178 const url::Origin invalid_origin_; |
150 const url::Origin insecure_origin_; | 179 const url::Origin insecure_origin_; |
151 | 180 |
| 181 const base::Time expected_expiry_; |
| 182 const base::Time valid_timestamp_; |
| 183 const base::Time invalid_timestamp_; |
| 184 |
152 private: | 185 private: |
153 base::StringPiece correct_public_key_; | 186 base::StringPiece correct_public_key_; |
154 base::StringPiece incorrect_public_key_; | 187 base::StringPiece incorrect_public_key_; |
155 }; | 188 }; |
156 | 189 |
| 190 // Test the extraction of the signed payload from token strings. This includes |
| 191 // checking the included version identifier, payload length, and cryptographic |
| 192 // signature. |
| 193 |
| 194 /* Test verification of signature and extraction of token JSON from signed token |
| 195 */ |
| 196 TEST_F(TrialTokenTest, ValidateValidSignature) { |
| 197 scoped_ptr<std::string> tokenJSON = |
| 198 Extract(kSampleToken, correct_public_key()); |
| 199 ASSERT_TRUE(tokenJSON); |
| 200 EXPECT_STREQ(kSampleTokenJSON, tokenJSON.get()->c_str()); |
| 201 } |
| 202 |
| 203 TEST_F(TrialTokenTest, ValidateInvalidSignature) { |
| 204 scoped_ptr<std::string> tokenJSON = |
| 205 Extract(kInvalidSignatureToken, correct_public_key()); |
| 206 ASSERT_FALSE(tokenJSON); |
| 207 } |
| 208 |
| 209 TEST_F(TrialTokenTest, ValidateSignatureWithIncorrectKey) { |
| 210 scoped_ptr<std::string> tokenJSON = |
| 211 Extract(kSampleToken, incorrect_public_key()); |
| 212 ASSERT_FALSE(tokenJSON); |
| 213 } |
| 214 |
| 215 TEST_F(TrialTokenTest, ValidateEmptyToken) { |
| 216 scoped_ptr<std::string> tokenJSON = Extract("", correct_public_key()); |
| 217 ASSERT_FALSE(tokenJSON); |
| 218 } |
| 219 |
| 220 TEST_F(TrialTokenTest, ValidateShortToken) { |
| 221 scoped_ptr<std::string> tokenJSON = |
| 222 Extract(kTruncatedToken, correct_public_key()); |
| 223 ASSERT_FALSE(tokenJSON); |
| 224 } |
| 225 |
| 226 TEST_F(TrialTokenTest, ValidateUnsupportedVersion) { |
| 227 scoped_ptr<std::string> tokenJSON = |
| 228 Extract(kIncorrectVersionToken, correct_public_key()); |
| 229 ASSERT_FALSE(tokenJSON); |
| 230 } |
| 231 |
| 232 TEST_F(TrialTokenTest, ValidateSignatureWithIncorrectLength) { |
| 233 scoped_ptr<std::string> token = |
| 234 Extract(kIncorrectLengthToken, correct_public_key()); |
| 235 ASSERT_FALSE(token); |
| 236 } |
| 237 |
| 238 /* Test parsing of fields from JSON token */ |
| 239 |
157 TEST_F(TrialTokenTest, ParseEmptyString) { | 240 TEST_F(TrialTokenTest, ParseEmptyString) { |
158 scoped_ptr<TrialToken> empty_token = TrialToken::Parse(""); | 241 scoped_ptr<TrialToken> empty_token = Parse(""); |
159 EXPECT_FALSE(empty_token); | 242 EXPECT_FALSE(empty_token); |
160 } | 243 } |
161 | 244 |
162 TEST_F(TrialTokenTest, ParseInvalidStrings) { | 245 TEST_F(TrialTokenTest, ParseInvalidStrings) { |
163 for (size_t i = 0; i < kNumInvalidTokens; ++i) { | 246 for (size_t i = 0; i < kNumInvalidTokens; ++i) { |
164 scoped_ptr<TrialToken> empty_token = TrialToken::Parse(kInvalidTokens[i]); | 247 scoped_ptr<TrialToken> empty_token = Parse(kInvalidTokens[i]); |
165 EXPECT_FALSE(empty_token) << "Invalid trial token should not parse: " | 248 EXPECT_FALSE(empty_token) << "Invalid trial token should not parse: " |
166 << kInvalidTokens[i]; | 249 << kInvalidTokens[i]; |
167 } | 250 } |
168 } | 251 } |
169 | 252 |
170 TEST_F(TrialTokenTest, ParseValidToken) { | 253 TEST_F(TrialTokenTest, ParseValidToken) { |
171 scoped_ptr<TrialToken> token = TrialToken::Parse(kSampleToken); | 254 scoped_ptr<TrialToken> token = Parse(kSampleTokenJSON); |
172 ASSERT_TRUE(token); | 255 ASSERT_TRUE(token); |
173 EXPECT_EQ(kExpectedVersion, token->version()); | |
174 EXPECT_EQ(kExpectedFeatureName, token->feature_name()); | 256 EXPECT_EQ(kExpectedFeatureName, token->feature_name()); |
175 EXPECT_EQ(kExpectedSignature, token->signature()); | |
176 EXPECT_EQ(kExpectedData, token->data()); | |
177 EXPECT_EQ(expected_origin_, token->origin()); | 257 EXPECT_EQ(expected_origin_, token->origin()); |
178 EXPECT_EQ(base::Time::FromDoubleT(kExpectedExpiry), token->expiry_time()); | 258 EXPECT_EQ(expected_expiry_, token->expiry_time()); |
179 } | 259 } |
180 | 260 |
181 TEST_F(TrialTokenTest, ValidateValidToken) { | 261 TEST_F(TrialTokenTest, ValidateValidToken) { |
182 scoped_ptr<TrialToken> token = TrialToken::Parse(kSampleToken); | 262 scoped_ptr<TrialToken> token = Parse(kSampleTokenJSON); |
183 ASSERT_TRUE(token); | 263 ASSERT_TRUE(token); |
184 EXPECT_TRUE(ValidateOrigin(token.get(), expected_origin_)); | 264 EXPECT_TRUE(ValidateOrigin(token.get(), expected_origin_)); |
185 EXPECT_FALSE(ValidateOrigin(token.get(), invalid_origin_)); | 265 EXPECT_FALSE(ValidateOrigin(token.get(), invalid_origin_)); |
186 EXPECT_FALSE(ValidateOrigin(token.get(), insecure_origin_)); | 266 EXPECT_FALSE(ValidateOrigin(token.get(), insecure_origin_)); |
187 EXPECT_TRUE(ValidateFeatureName(token.get(), kExpectedFeatureName)); | 267 EXPECT_TRUE(ValidateFeatureName(token.get(), kExpectedFeatureName)); |
188 EXPECT_FALSE(ValidateFeatureName(token.get(), kInvalidFeatureName)); | 268 EXPECT_FALSE(ValidateFeatureName(token.get(), kInvalidFeatureName)); |
189 EXPECT_FALSE(ValidateFeatureName( | 269 EXPECT_FALSE(ValidateFeatureName( |
190 token.get(), base::ToUpperASCII(kExpectedFeatureName).c_str())); | 270 token.get(), base::ToUpperASCII(kExpectedFeatureName).c_str())); |
191 EXPECT_FALSE(ValidateFeatureName( | 271 EXPECT_FALSE(ValidateFeatureName( |
192 token.get(), base::ToLowerASCII(kExpectedFeatureName).c_str())); | 272 token.get(), base::ToLowerASCII(kExpectedFeatureName).c_str())); |
193 EXPECT_TRUE( | 273 EXPECT_TRUE(ValidateDate(token.get(), valid_timestamp_)); |
194 ValidateDate(token.get(), base::Time::FromDoubleT(kValidTimestamp))); | 274 EXPECT_FALSE(ValidateDate(token.get(), invalid_timestamp_)); |
195 EXPECT_FALSE( | |
196 ValidateDate(token.get(), base::Time::FromDoubleT(kInvalidTimestamp))); | |
197 } | 275 } |
198 | 276 |
199 TEST_F(TrialTokenTest, TokenIsAppropriateForOriginAndFeature) { | 277 TEST_F(TrialTokenTest, TokenIsValidForFeature) { |
200 scoped_ptr<TrialToken> token = TrialToken::Parse(kSampleToken); | 278 scoped_ptr<TrialToken> token = Parse(kSampleTokenJSON); |
201 ASSERT_TRUE(token); | 279 ASSERT_TRUE(token); |
202 EXPECT_TRUE(token->IsAppropriate(expected_origin_, kExpectedFeatureName)); | 280 EXPECT_TRUE(token->IsValidForFeature(expected_origin_, kExpectedFeatureName, |
203 EXPECT_FALSE(token->IsAppropriate(expected_origin_, | 281 valid_timestamp_)); |
204 base::ToUpperASCII(kExpectedFeatureName))); | 282 EXPECT_FALSE(token->IsValidForFeature( |
205 EXPECT_FALSE(token->IsAppropriate(expected_origin_, | 283 expected_origin_, base::ToUpperASCII(kExpectedFeatureName), |
206 base::ToLowerASCII(kExpectedFeatureName))); | 284 valid_timestamp_)); |
207 EXPECT_FALSE(token->IsAppropriate(invalid_origin_, kExpectedFeatureName)); | 285 EXPECT_FALSE(token->IsValidForFeature( |
208 EXPECT_FALSE(token->IsAppropriate(insecure_origin_, kExpectedFeatureName)); | 286 expected_origin_, base::ToLowerASCII(kExpectedFeatureName), |
209 EXPECT_FALSE(token->IsAppropriate(expected_origin_, kInvalidFeatureName)); | 287 valid_timestamp_)); |
| 288 EXPECT_FALSE(token->IsValidForFeature(invalid_origin_, kExpectedFeatureName, |
| 289 valid_timestamp_)); |
| 290 EXPECT_FALSE(token->IsValidForFeature(insecure_origin_, kExpectedFeatureName, |
| 291 valid_timestamp_)); |
| 292 EXPECT_FALSE(token->IsValidForFeature(expected_origin_, kInvalidFeatureName, |
| 293 valid_timestamp_)); |
| 294 EXPECT_FALSE(token->IsValidForFeature(expected_origin_, kExpectedFeatureName, |
| 295 invalid_timestamp_)); |
210 } | 296 } |
211 | 297 |
212 TEST_F(TrialTokenTest, ValidateValidSignature) { | |
213 scoped_ptr<TrialToken> token = TrialToken::Parse(kSampleToken); | |
214 ASSERT_TRUE(token); | |
215 EXPECT_TRUE(ValidateSignature(token.get(), correct_public_key())); | |
216 } | |
217 | |
218 TEST_F(TrialTokenTest, ValidateInvalidSignature) { | |
219 scoped_ptr<TrialToken> token = TrialToken::Parse(kInvalidSignatureToken); | |
220 ASSERT_TRUE(token); | |
221 EXPECT_FALSE(ValidateSignature(token.get(), correct_public_key())); | |
222 } | |
223 | |
224 TEST_F(TrialTokenTest, ValidateTokenWithCorrectKey) { | |
225 scoped_ptr<TrialToken> token = TrialToken::Parse(kSampleToken); | |
226 ASSERT_TRUE(token); | |
227 EXPECT_TRUE(token->IsValid(base::Time::FromDoubleT(kValidTimestamp), | |
228 correct_public_key())); | |
229 } | |
230 | |
231 TEST_F(TrialTokenTest, ValidateSignatureWithIncorrectKey) { | |
232 scoped_ptr<TrialToken> token = TrialToken::Parse(kSampleToken); | |
233 ASSERT_TRUE(token); | |
234 EXPECT_FALSE(token->IsValid(base::Time::FromDoubleT(kValidTimestamp), | |
235 incorrect_public_key())); | |
236 } | |
237 | |
238 TEST_F(TrialTokenTest, ValidateWhenNotExpired) { | |
239 scoped_ptr<TrialToken> token = TrialToken::Parse(kSampleToken); | |
240 ASSERT_TRUE(token); | |
241 } | |
242 | 298 |
243 } // namespace content | 299 } // namespace content |
OLD | NEW |