OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_WITH_MANAGEMENT_POLICY_APITEST_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_WITH_MANAGEMENT_POLICY_APITEST_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_WITH_MANAGEMENT_POLICY_APITEST_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_WITH_MANAGEMENT_POLICY_APITEST_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "chrome/browser/extensions/extension_apitest.h" | 11 #include "chrome/browser/extensions/extension_apitest.h" |
12 #include "chrome/browser/extensions/extension_management_test_util.h" | |
13 #include "components/policy/core/common/mock_configuration_policy_provider.h" | 12 #include "components/policy/core/common/mock_configuration_policy_provider.h" |
14 | 13 |
15 struct ManagementPolicyRequestLog { | |
16 std::string all_headers; | |
17 std::string host; | |
18 }; | |
19 | |
20 // The ExtensionSettings policy affects host permissions which impacts several | 14 // The ExtensionSettings policy affects host permissions which impacts several |
21 // API integration tests. This class enables easy declaration of | 15 // API integration tests. This class enables easy declaration of |
22 // ExtensionSettings policies and functions commonly used during these tests. | 16 // ExtensionSettings policies and functions commonly used during these tests. |
23 class ExtensionApiTestWithManagementPolicy : public ExtensionApiTest { | 17 class ExtensionApiTestWithManagementPolicy : public ExtensionApiTest { |
24 public: | 18 public: |
25 ExtensionApiTestWithManagementPolicy(); | 19 ExtensionApiTestWithManagementPolicy(); |
26 ~ExtensionApiTestWithManagementPolicy() override; | 20 ~ExtensionApiTestWithManagementPolicy() override; |
27 void SetUpInProcessBrowserTestFixture() override; | 21 void SetUpInProcessBrowserTestFixture() override; |
28 void SetUpOnMainThread() override; | 22 void SetUpOnMainThread() override; |
29 | 23 |
30 protected: | 24 protected: |
31 policy::MockConfigurationPolicyProvider policy_provider_; | 25 policy::MockConfigurationPolicyProvider policy_provider_; |
32 bool BrowsedTo(const std::string& test_host); | |
33 void ClearRequestLog(); | |
34 void MonitorRequestHandler(const net::test_server::HttpRequest& request); | |
35 | |
36 private: | |
37 std::vector<ManagementPolicyRequestLog> request_log_; | |
38 | 26 |
39 DISALLOW_COPY_AND_ASSIGN(ExtensionApiTestWithManagementPolicy); | 27 DISALLOW_COPY_AND_ASSIGN(ExtensionApiTestWithManagementPolicy); |
40 }; | 28 }; |
41 | 29 |
42 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_WITH_MANAGEMENT_POLICY_APITEST_H_ | 30 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_WITH_MANAGEMENT_POLICY_APITEST_H_ |
OLD | NEW |