OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/message_loop.h" | 5 #include "base/message_loop.h" |
6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
7 #include "base/scoped_temp_dir.h" | 7 #include "base/scoped_temp_dir.h" |
8 #include "base/stl_util.h" | 8 #include "base/stl_util.h" |
9 #include "base/string_number_conversions.h" | 9 #include "base/string_number_conversions.h" |
10 #include "base/stringprintf.h" | 10 #include "base/stringprintf.h" |
11 #include "chrome/browser/extensions/extension_prefs.h" | 11 #include "chrome/browser/extensions/extension_prefs.h" |
12 #include "chrome/browser/extensions/test_extension_prefs.h" | 12 #include "chrome/browser/extensions/test_extension_prefs.h" |
13 #include "chrome/browser/prefs/pref_change_registrar.h" | 13 #include "chrome/browser/prefs/pref_change_registrar.h" |
14 #include "chrome/browser/prefs/scoped_user_pref_update.h" | 14 #include "chrome/browser/prefs/scoped_user_pref_update.h" |
15 #include "chrome/common/chrome_paths.h" | 15 #include "chrome/common/chrome_paths.h" |
16 #include "chrome/common/extensions/extension_constants.h" | 16 #include "chrome/common/extensions/extension_constants.h" |
17 #include "chrome/common/extensions/extension_permission_set.h" | 17 #include "chrome/common/extensions/extension_permission_set.h" |
| 18 #include "chrome/test/testing_browser_process_test.h" |
18 #include "content/browser/browser_thread.h" | 19 #include "content/browser/browser_thread.h" |
19 #include "content/common/notification_details.h" | 20 #include "content/common/notification_details.h" |
20 #include "content/common/notification_observer_mock.h" | 21 #include "content/common/notification_observer_mock.h" |
21 #include "content/common/notification_source.h" | 22 #include "content/common/notification_source.h" |
22 #include "testing/gtest/include/gtest/gtest.h" | 23 #include "testing/gtest/include/gtest/gtest.h" |
23 | 24 |
24 using base::Time; | 25 using base::Time; |
25 using base::TimeDelta; | 26 using base::TimeDelta; |
26 | 27 |
27 namespace { | 28 namespace { |
(...skipping 10 matching lines...) Expand all Loading... |
38 const char kDefaultPref4[] = "default pref 4"; | 39 const char kDefaultPref4[] = "default pref 4"; |
39 | 40 |
40 } // namespace | 41 } // namespace |
41 | 42 |
42 static void AddPattern(URLPatternSet* extent, const std::string& pattern) { | 43 static void AddPattern(URLPatternSet* extent, const std::string& pattern) { |
43 int schemes = URLPattern::SCHEME_ALL; | 44 int schemes = URLPattern::SCHEME_ALL; |
44 extent->AddPattern(URLPattern(schemes, pattern)); | 45 extent->AddPattern(URLPattern(schemes, pattern)); |
45 } | 46 } |
46 | 47 |
47 // Base class for tests. | 48 // Base class for tests. |
48 class ExtensionPrefsTest : public testing::Test { | 49 class ExtensionPrefsTest : public TestingBrowserProcessTest { |
49 public: | 50 public: |
50 ExtensionPrefsTest() | 51 ExtensionPrefsTest() |
51 : ui_thread_(BrowserThread::UI, &message_loop_), | 52 : ui_thread_(BrowserThread::UI, &message_loop_), |
52 file_thread_(BrowserThread::FILE, &message_loop_) { | 53 file_thread_(BrowserThread::FILE, &message_loop_) { |
53 } | 54 } |
54 | 55 |
55 // This function will get called once, and is the right place to do operations | 56 // This function will get called once, and is the right place to do operations |
56 // on ExtensionPrefs that write data. | 57 // on ExtensionPrefs that write data. |
57 virtual void Initialize() = 0; | 58 virtual void Initialize() = 0; |
58 | 59 |
(...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1064 testing::Mock::VerifyAndClearExpectations(v1i); | 1065 testing::Mock::VerifyAndClearExpectations(v1i); |
1065 testing::Mock::VerifyAndClearExpectations(v2); | 1066 testing::Mock::VerifyAndClearExpectations(v2); |
1066 testing::Mock::VerifyAndClearExpectations(v2i); | 1067 testing::Mock::VerifyAndClearExpectations(v2i); |
1067 } | 1068 } |
1068 | 1069 |
1069 virtual void Verify() { | 1070 virtual void Verify() { |
1070 } | 1071 } |
1071 }; | 1072 }; |
1072 TEST_F(ExtensionPrefsSetExtensionControlledPref, | 1073 TEST_F(ExtensionPrefsSetExtensionControlledPref, |
1073 ExtensionPrefsSetExtensionControlledPref) {} | 1074 ExtensionPrefsSetExtensionControlledPref) {} |
OLD | NEW |