OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "components/gcm_driver/gcm_driver_desktop.h" | 5 #include "components/gcm_driver/gcm_driver_desktop.h" |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
11 #include "base/files/scoped_temp_dir.h" | 11 #include "base/files/scoped_temp_dir.h" |
12 #include "base/location.h" | 12 #include "base/location.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "base/run_loop.h" | 14 #include "base/run_loop.h" |
15 #include "base/strings/string_util.h" | 15 #include "base/strings/string_util.h" |
16 #include "base/test/test_simple_task_runner.h" | 16 #include "base/test/test_simple_task_runner.h" |
17 #include "base/threading/thread.h" | 17 #include "base/threading/thread.h" |
18 #include "base/threading/thread_task_runner_handle.h" | 18 #include "base/threading/thread_task_runner_handle.h" |
19 #include "components/gcm_driver/crypto/gcm_encryption_provider.h" | 19 #include "components/gcm_driver/crypto/gcm_encryption_provider.h" |
20 #include "components/gcm_driver/fake_gcm_app_handler.h" | 20 #include "components/gcm_driver/fake_gcm_app_handler.h" |
21 #include "components/gcm_driver/fake_gcm_client.h" | 21 #include "components/gcm_driver/fake_gcm_client.h" |
22 #include "components/gcm_driver/fake_gcm_client_factory.h" | 22 #include "components/gcm_driver/fake_gcm_client_factory.h" |
23 #include "components/gcm_driver/gcm_app_handler.h" | 23 #include "components/gcm_driver/gcm_app_handler.h" |
24 #include "components/gcm_driver/gcm_channel_status_request.h" | 24 #include "components/gcm_driver/gcm_channel_status_request.h" |
25 #include "components/gcm_driver/gcm_channel_status_syncer.h" | 25 #include "components/gcm_driver/gcm_channel_status_syncer.h" |
26 #include "components/gcm_driver/gcm_client_factory.h" | 26 #include "components/gcm_driver/gcm_client_factory.h" |
27 #include "components/gcm_driver/gcm_connection_observer.h" | 27 #include "components/gcm_driver/gcm_connection_observer.h" |
28 #include "components/prefs/pref_registry_simple.h" | 28 #include "components/prefs/pref_registry_simple.h" |
29 #include "components/prefs/testing_pref_service.h" | 29 #include "components/prefs/testing_pref_service.h" |
| 30 #include "components/sync/protocol/experiment_status.pb.h" |
| 31 #include "components/sync/protocol/experiments_specifics.pb.h" |
30 #include "net/url_request/test_url_fetcher_factory.h" | 32 #include "net/url_request/test_url_fetcher_factory.h" |
31 #include "net/url_request/url_fetcher_delegate.h" | 33 #include "net/url_request/url_fetcher_delegate.h" |
32 #include "net/url_request/url_request_context_getter.h" | 34 #include "net/url_request/url_request_context_getter.h" |
33 #include "net/url_request/url_request_test_util.h" | 35 #include "net/url_request/url_request_test_util.h" |
34 #include "sync/protocol/experiment_status.pb.h" | |
35 #include "sync/protocol/experiments_specifics.pb.h" | |
36 #include "testing/gtest/include/gtest/gtest.h" | 36 #include "testing/gtest/include/gtest/gtest.h" |
37 | 37 |
38 namespace gcm { | 38 namespace gcm { |
39 | 39 |
40 namespace { | 40 namespace { |
41 | 41 |
42 const char kTestAppID1[] = "TestApp1"; | 42 const char kTestAppID1[] = "TestApp1"; |
43 const char kTestAppID2[] = "TestApp2"; | 43 const char kTestAppID2[] = "TestApp2"; |
44 const char kUserID1[] = "user1"; | 44 const char kUserID1[] = "user1"; |
45 const char kScope[] = "GCM"; | 45 const char kScope[] = "GCM"; |
(...skipping 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1376 PumpUILoop(); | 1376 PumpUILoop(); |
1377 EXPECT_EQ(GCMClient::UNKNOWN_ERROR, unregistration_result()); | 1377 EXPECT_EQ(GCMClient::UNKNOWN_ERROR, unregistration_result()); |
1378 | 1378 |
1379 // DeleteToken operation will be invoked after GCMClient becomes ready. | 1379 // DeleteToken operation will be invoked after GCMClient becomes ready. |
1380 GetGCMClient()->PerformDelayedStart(); | 1380 GetGCMClient()->PerformDelayedStart(); |
1381 WaitForAsyncOperation(); | 1381 WaitForAsyncOperation(); |
1382 EXPECT_EQ(GCMClient::SUCCESS, unregistration_result()); | 1382 EXPECT_EQ(GCMClient::SUCCESS, unregistration_result()); |
1383 } | 1383 } |
1384 | 1384 |
1385 } // namespace gcm | 1385 } // namespace gcm |
OLD | NEW |