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 "chrome/browser/notifications/extension_welcome_notification.h" | 5 #include "chrome/browser/notifications/extension_welcome_notification.h" |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include <memory> | 9 #include <memory> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "base/message_loop/message_loop.h" | 13 #include "base/message_loop/message_loop.h" |
14 #include "base/strings/utf_string_conversions.h" | 14 #include "base/strings/utf_string_conversions.h" |
15 #include "base/test/test_simple_task_runner.h" | 15 #include "base/test/test_simple_task_runner.h" |
16 #include "base/threading/thread_task_runner_handle.h" | 16 #include "base/threading/thread_task_runner_handle.h" |
17 #include "chrome/browser/notifications/notification.h" | 17 #include "chrome/browser/notifications/notification.h" |
18 #include "chrome/browser/prefs/pref_service_syncable_util.h" | 18 #include "chrome/browser/prefs/pref_service_syncable_util.h" |
19 #include "chrome/common/pref_names.h" | 19 #include "chrome/common/pref_names.h" |
20 #include "chrome/test/base/testing_browser_process.h" | 20 #include "chrome/test/base/testing_browser_process.h" |
21 #include "chrome/test/base/testing_profile.h" | 21 #include "chrome/test/base/testing_profile.h" |
22 #include "components/pref_registry/pref_registry_syncable.h" | 22 #include "components/pref_registry/pref_registry_syncable.h" |
23 #include "components/prefs/pref_service.h" | 23 #include "components/prefs/pref_service.h" |
| 24 #include "components/sync/api/fake_sync_change_processor.h" |
| 25 #include "components/sync/api/sync_error_factory_mock.h" |
24 #include "components/syncable_prefs/testing_pref_service_syncable.h" | 26 #include "components/syncable_prefs/testing_pref_service_syncable.h" |
25 #include "extensions/browser/quota_service.h" | 27 #include "extensions/browser/quota_service.h" |
26 #include "sync/api/fake_sync_change_processor.h" | |
27 #include "sync/api/sync_error_factory_mock.h" | |
28 #include "testing/gtest/include/gtest/gtest.h" | 28 #include "testing/gtest/include/gtest/gtest.h" |
29 #include "ui/message_center/fake_message_center.h" | 29 #include "ui/message_center/fake_message_center.h" |
30 #include "ui/message_center/notification.h" | 30 #include "ui/message_center/notification.h" |
31 | 31 |
32 class MockMessageCenter : public message_center::FakeMessageCenter { | 32 class MockMessageCenter : public message_center::FakeMessageCenter { |
33 public: | 33 public: |
34 MockMessageCenter() | 34 MockMessageCenter() |
35 : add_notification_calls_(0), | 35 : add_notification_calls_(0), |
36 remove_notification_calls_(0), | 36 remove_notification_calls_(0), |
37 notifications_with_shown_as_popup_(0) { | 37 notifications_with_shown_as_popup_(0) { |
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 | 530 |
531 EXPECT_TRUE(task_runner()->GetPendingTasks().empty()); | 531 EXPECT_TRUE(task_runner()->GetPendingTasks().empty()); |
532 EXPECT_EQ(message_center()->add_notification_calls(), 0); | 532 EXPECT_EQ(message_center()->add_notification_calls(), 0); |
533 EXPECT_EQ(message_center()->remove_notification_calls(), 0); | 533 EXPECT_EQ(message_center()->remove_notification_calls(), 0); |
534 EXPECT_EQ(message_center()->notifications_with_shown_as_popup(), 0); | 534 EXPECT_EQ(message_center()->notifications_with_shown_as_popup(), 0); |
535 EXPECT_FALSE(GetBooleanPref(prefs::kWelcomeNotificationDismissed)); | 535 EXPECT_FALSE(GetBooleanPref(prefs::kWelcomeNotificationDismissed)); |
536 EXPECT_TRUE(GetBooleanPref(prefs::kWelcomeNotificationDismissedLocal)); | 536 EXPECT_TRUE(GetBooleanPref(prefs::kWelcomeNotificationDismissedLocal)); |
537 EXPECT_TRUE(GetBooleanPref(prefs::kWelcomeNotificationPreviouslyPoppedUp)); | 537 EXPECT_TRUE(GetBooleanPref(prefs::kWelcomeNotificationPreviouslyPoppedUp)); |
538 EXPECT_EQ(GetInt64Pref(prefs::kWelcomeNotificationExpirationTimestamp), 1); | 538 EXPECT_EQ(GetInt64Pref(prefs::kWelcomeNotificationExpirationTimestamp), 1); |
539 } | 539 } |
OLD | NEW |