1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/gcm_driver/crypto/gcm_key_store.h"
#include <string>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/files/scoped_temp_dir.h"
#include "base/logging.h"
#include "base/message_loop/message_loop.h"
#include "base/run_loop.h"
#include "base/test/histogram_tester.h"
#include "base/threading/thread_task_runner_handle.h"
#include "components/gcm_driver/crypto/p256_key_util.h"
#include "net/test/gtest_util.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace gcm {
namespace {
const char kFakeAppId[] = "my_app_id";
const char kSecondFakeAppId[] = "my_other_app_id";
const char kFakeAuthorizedEntity[] = "my_sender_id";
const char kSecondFakeAuthorizedEntity[] = "my_other_sender_id";
class GCMKeyStoreTest : public ::testing::Test {
public:
GCMKeyStoreTest() {}
~GCMKeyStoreTest() override {}
void SetUp() override {
ASSERT_TRUE(scoped_temp_dir_.CreateUniqueTempDir());
CreateKeyStore();
}
void TearDown() override {
gcm_key_store_.reset();
// |gcm_key_store_| owns a ProtoDatabaseImpl whose destructor deletes the
// underlying LevelDB database on the task runner.
base::RunLoop().RunUntilIdle();
}
// Creates the GCM Key Store instance. May be called from within a test's body
// to re-create the key store, causing the database to re-open.
void CreateKeyStore() {
gcm_key_store_.reset(new GCMKeyStore(scoped_temp_dir_.GetPath(),
message_loop_.task_runner()));
}
// Callback to use with GCMKeyStore::{GetKeys, CreateKeys} calls.
void GotKeys(KeyPair* pair_out, std::string* auth_secret_out,
const KeyPair& pair, const std::string& auth_secret) {
*pair_out = pair;
*auth_secret_out = auth_secret;
}
protected:
GCMKeyStore* gcm_key_store() { return gcm_key_store_.get(); }
base::HistogramTester* histogram_tester() { return &histogram_tester_; }
private:
base::MessageLoop message_loop_;
base::ScopedTempDir scoped_temp_dir_;
base::HistogramTester histogram_tester_;
std::unique_ptr<GCMKeyStore> gcm_key_store_;
};
TEST_F(GCMKeyStoreTest, EmptyByDefault) {
// The key store is initialized lazily, so this histogram confirms that
// calling the constructor does not in fact cause initialization.
histogram_tester()->ExpectTotalCount(
"GCM.Crypto.InitKeyStoreSuccessRate", 0);
KeyPair pair;
std::string auth_secret;
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &pair,
&auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_FALSE(pair.IsInitialized());
EXPECT_FALSE(pair.has_type());
EXPECT_EQ(0u, auth_secret.size());
histogram_tester()->ExpectBucketCount(
"GCM.Crypto.GetKeySuccessRate", 0, 1); // failure
}
TEST_F(GCMKeyStoreTest, CreateAndGetKeys) {
KeyPair pair;
std::string auth_secret;
gcm_key_store()->CreateKeys(
kFakeAppId, kFakeAuthorizedEntity,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &pair,
&auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(pair.IsInitialized());
ASSERT_TRUE(pair.has_private_key());
ASSERT_TRUE(pair.has_public_key());
EXPECT_GT(pair.public_key().size(), 0u);
EXPECT_GT(pair.private_key().size(), 0u);
ASSERT_GT(auth_secret.size(), 0u);
histogram_tester()->ExpectBucketCount(
"GCM.Crypto.CreateKeySuccessRate", 1, 1); // success
KeyPair read_pair;
std::string read_auth_secret;
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair,
&read_auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(read_pair.IsInitialized());
EXPECT_EQ(pair.type(), read_pair.type());
EXPECT_EQ(pair.private_key(), read_pair.private_key());
EXPECT_EQ(pair.public_key(), read_pair.public_key());
EXPECT_EQ(auth_secret, read_auth_secret);
histogram_tester()->ExpectBucketCount("GCM.Crypto.GetKeySuccessRate", 1,
1); // success
// GetKey should also succeed if fallback_to_empty_authorized_entity is true
// (fallback should not occur, since an exact match is found).
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
true /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair,
&read_auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(read_pair.IsInitialized());
EXPECT_EQ(pair.type(), read_pair.type());
EXPECT_EQ(pair.private_key(), read_pair.private_key());
EXPECT_EQ(pair.public_key(), read_pair.public_key());
EXPECT_EQ(auth_secret, read_auth_secret);
histogram_tester()->ExpectBucketCount("GCM.Crypto.GetKeySuccessRate", 1,
2); // another success
}
TEST_F(GCMKeyStoreTest, GetKeysFallback) {
KeyPair pair;
std::string auth_secret;
gcm_key_store()->CreateKeys(
kFakeAppId, "" /* empty authorized entity for non-InstanceID */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &pair,
&auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(pair.IsInitialized());
ASSERT_TRUE(pair.has_private_key());
ASSERT_TRUE(pair.has_public_key());
EXPECT_GT(pair.public_key().size(), 0u);
EXPECT_GT(pair.private_key().size(), 0u);
ASSERT_GT(auth_secret.size(), 0u);
histogram_tester()->ExpectBucketCount("GCM.Crypto.CreateKeySuccessRate", 1,
1); // success
// GetKeys should fail when fallback_to_empty_authorized_entity is false, as
// there is not an exact match for kFakeAuthorizedEntity.
KeyPair read_pair;
std::string read_auth_secret;
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair,
&read_auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_FALSE(read_pair.IsInitialized());
EXPECT_FALSE(read_pair.has_type());
EXPECT_EQ(0u, read_auth_secret.size());
histogram_tester()->ExpectBucketCount("GCM.Crypto.GetKeySuccessRate", 0,
1); // failure
// GetKey should succeed when fallback_to_empty_authorized_entity is true, as
// falling back to empty authorized entity will match the created key.
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
true /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair,
&read_auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(read_pair.IsInitialized());
EXPECT_EQ(pair.type(), read_pair.type());
EXPECT_EQ(pair.private_key(), read_pair.private_key());
EXPECT_EQ(pair.public_key(), read_pair.public_key());
EXPECT_EQ(auth_secret, read_auth_secret);
histogram_tester()->ExpectBucketCount("GCM.Crypto.GetKeySuccessRate", 1,
1); // success
}
TEST_F(GCMKeyStoreTest, KeysPersistenceBetweenInstances) {
KeyPair pair;
std::string auth_secret;
gcm_key_store()->CreateKeys(
kFakeAppId, kFakeAuthorizedEntity,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &pair,
&auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(pair.IsInitialized());
histogram_tester()->ExpectBucketCount(
"GCM.Crypto.InitKeyStoreSuccessRate", 1, 1); // success
histogram_tester()->ExpectBucketCount(
"GCM.Crypto.LoadKeyStoreSuccessRate", 1, 1); // success
// Create a new GCM Key Store instance.
CreateKeyStore();
KeyPair read_pair;
std::string read_auth_secret;
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair,
&read_auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(read_pair.IsInitialized());
EXPECT_TRUE(read_pair.has_type());
EXPECT_GT(read_auth_secret.size(), 0u);
histogram_tester()->ExpectBucketCount(
"GCM.Crypto.InitKeyStoreSuccessRate", 1, 2); // success
histogram_tester()->ExpectBucketCount(
"GCM.Crypto.LoadKeyStoreSuccessRate", 1, 2); // success
}
TEST_F(GCMKeyStoreTest, CreateAndRemoveKeys) {
KeyPair pair;
std::string auth_secret;
gcm_key_store()->CreateKeys(
kFakeAppId, kFakeAuthorizedEntity,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &pair,
&auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(pair.IsInitialized());
KeyPair read_pair;
std::string read_auth_secret;
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair,
&read_auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(read_pair.IsInitialized());
EXPECT_TRUE(read_pair.has_type());
gcm_key_store()->RemoveKeys(kFakeAppId, kFakeAuthorizedEntity,
base::Bind(&base::DoNothing));
base::RunLoop().RunUntilIdle();
histogram_tester()->ExpectBucketCount(
"GCM.Crypto.RemoveKeySuccessRate", 1, 1); // success
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair,
&read_auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_FALSE(read_pair.IsInitialized());
}
TEST_F(GCMKeyStoreTest, CreateGetAndRemoveKeysSynchronously) {
KeyPair pair;
std::string auth_secret;
gcm_key_store()->CreateKeys(
kFakeAppId, kFakeAuthorizedEntity,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &pair,
&auth_secret));
// Continue synchronously, without running RunUntilIdle first.
KeyPair pair_after_create;
std::string auth_secret_after_create;
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this),
&pair_after_create, &auth_secret_after_create));
// Continue synchronously, without running RunUntilIdle first.
gcm_key_store()->RemoveKeys(kFakeAppId, kFakeAuthorizedEntity,
base::Bind(&base::DoNothing));
// Continue synchronously, without running RunUntilIdle first.
KeyPair pair_after_remove;
std::string auth_secret_after_remove;
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this),
&pair_after_remove, &auth_secret_after_remove));
base::RunLoop().RunUntilIdle();
histogram_tester()->ExpectBucketCount("GCM.Crypto.RemoveKeySuccessRate", 1,
1); // success
KeyPair pair_after_idle;
std::string auth_secret_after_idle;
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this),
&pair_after_idle, &auth_secret_after_idle));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(pair.IsInitialized());
ASSERT_TRUE(pair_after_create.IsInitialized());
EXPECT_FALSE(pair_after_remove.IsInitialized());
EXPECT_FALSE(pair_after_idle.IsInitialized());
EXPECT_TRUE(pair.has_type());
EXPECT_EQ(pair.type(), pair_after_create.type());
EXPECT_EQ(pair.private_key(), pair_after_create.private_key());
EXPECT_EQ(pair.public_key(), pair_after_create.public_key());
EXPECT_GT(auth_secret.size(), 0u);
EXPECT_EQ(auth_secret, auth_secret_after_create);
EXPECT_EQ("", auth_secret_after_remove);
EXPECT_EQ("", auth_secret_after_idle);
}
TEST_F(GCMKeyStoreTest, RemoveKeysWildcardAuthorizedEntity) {
KeyPair pair1, pair2, pair3;
std::string auth_secret1, auth_secret2, auth_secret3;
gcm_key_store()->CreateKeys(
kFakeAppId, kFakeAuthorizedEntity,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &pair1,
&auth_secret1));
gcm_key_store()->CreateKeys(
kFakeAppId, kSecondFakeAuthorizedEntity,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &pair2,
&auth_secret2));
gcm_key_store()->CreateKeys(
kSecondFakeAppId, kFakeAuthorizedEntity,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &pair3,
&auth_secret3));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(pair1.IsInitialized());
ASSERT_TRUE(pair2.IsInitialized());
ASSERT_TRUE(pair3.IsInitialized());
KeyPair read_pair1, read_pair2, read_pair3;
std::string read_auth_secret1, read_auth_secret2, read_auth_secret3;
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair1,
&read_auth_secret1));
gcm_key_store()->GetKeys(
kFakeAppId, kSecondFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair2,
&read_auth_secret2));
gcm_key_store()->GetKeys(
kSecondFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair3,
&read_auth_secret3));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(read_pair1.IsInitialized());
EXPECT_TRUE(read_pair1.has_type());
ASSERT_TRUE(read_pair2.IsInitialized());
EXPECT_TRUE(read_pair2.has_type());
ASSERT_TRUE(read_pair3.IsInitialized());
EXPECT_TRUE(read_pair3.has_type());
gcm_key_store()->RemoveKeys(kFakeAppId, "*" /* authorized_entity */,
base::Bind(&base::DoNothing));
base::RunLoop().RunUntilIdle();
histogram_tester()->ExpectBucketCount("GCM.Crypto.RemoveKeySuccessRate", 1,
1); // success
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair1,
&read_auth_secret1));
gcm_key_store()->GetKeys(
kFakeAppId, kSecondFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair2,
&read_auth_secret2));
gcm_key_store()->GetKeys(
kSecondFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair3,
&read_auth_secret3));
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(read_pair1.IsInitialized());
EXPECT_FALSE(read_pair2.IsInitialized());
ASSERT_TRUE(read_pair3.IsInitialized());
EXPECT_TRUE(read_pair3.has_type());
}
TEST_F(GCMKeyStoreTest, GetKeysMultipleAppIds) {
KeyPair pair;
std::string auth_secret;
gcm_key_store()->CreateKeys(
kFakeAppId, kFakeAuthorizedEntity,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &pair,
&auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(pair.IsInitialized());
gcm_key_store()->CreateKeys(
kSecondFakeAppId, kSecondFakeAuthorizedEntity,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &pair,
&auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(pair.IsInitialized());
KeyPair read_pair;
std::string read_auth_secret;
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair,
&read_auth_secret));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(read_pair.IsInitialized());
EXPECT_TRUE(read_pair.has_type());
}
TEST_F(GCMKeyStoreTest, SuccessiveCallsBeforeInitialization) {
KeyPair pair;
std::string auth_secret;
gcm_key_store()->CreateKeys(
kFakeAppId, kFakeAuthorizedEntity,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &pair,
&auth_secret));
// Deliberately do not run the message loop, so that the callback has not
// been resolved yet. The following EXPECT() ensures this.
EXPECT_FALSE(pair.IsInitialized());
KeyPair read_pair;
std::string read_auth_secret;
gcm_key_store()->GetKeys(
kFakeAppId, kFakeAuthorizedEntity,
false /* fallback_to_empty_authorized_entity */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this), &read_pair,
&read_auth_secret));
EXPECT_FALSE(read_pair.IsInitialized());
// Now run the message loop. Both tasks should have finished executing. Due
// to the asynchronous nature of operations, however, we can't rely on the
// write to have finished before the read begins.
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(pair.IsInitialized());
}
#if !defined(NDEBUG) && DCHECK_IS_ON()
TEST_F(GCMKeyStoreTest, CannotShareAppIdFromGCMToInstanceID) {
KeyPair pair_unused;
std::string auth_secret_unused;
gcm_key_store()->CreateKeys(
kFakeAppId, "" /* empty authorized entity for non-InstanceID */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this),
&pair_unused, &auth_secret_unused));
base::RunLoop().RunUntilIdle();
static_assert(logging::LOG_DCHECK == logging::LOG_DFATAL,
"Unless these are equal, EXPECT_DFATAL will miss the DCHECK");
EXPECT_DFATAL(
{
gcm_key_store()->CreateKeys(
kFakeAppId, kFakeAuthorizedEntity,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this),
&pair_unused, &auth_secret_unused));
base::RunLoop().RunUntilIdle();
},
"Instance ID tokens cannot share an app_id with a non-InstanceID GCM "
"registration");
}
TEST_F(GCMKeyStoreTest, CannotShareAppIdFromInstanceIDToGCM) {
KeyPair pair_unused;
std::string auth_secret_unused;
gcm_key_store()->CreateKeys(
kFakeAppId, kFakeAuthorizedEntity,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this),
&pair_unused, &auth_secret_unused));
base::RunLoop().RunUntilIdle();
gcm_key_store()->CreateKeys(
kFakeAppId, kSecondFakeAuthorizedEntity,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this),
&pair_unused, &auth_secret_unused));
base::RunLoop().RunUntilIdle();
static_assert(logging::LOG_DCHECK == logging::LOG_DFATAL,
"Unless these are equal, EXPECT_DFATAL will miss the DCHECK");
EXPECT_DFATAL(
{
gcm_key_store()->CreateKeys(
kFakeAppId, "" /* empty authorized entity for non-InstanceID */,
base::Bind(&GCMKeyStoreTest::GotKeys, base::Unretained(this),
&pair_unused, &auth_secret_unused));
base::RunLoop().RunUntilIdle();
},
"Instance ID tokens cannot share an app_id with a non-InstanceID GCM "
"registration");
}
#endif // !defined(NDEBUG) && DCHECK_IS_ON()
} // namespace
} // namespace gcm
|