Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(522)

Side by Side Diff: chrome/browser/extensions/extension_with_management_policy_apitest.h

Issue 2934583002: Reland: chrome.webRequest support for ExtensionSettings (Closed)
Patch Set: Fix flaky test ExtensionApiTestWithManagementPolicy.InitiatorProtectedByPolicy Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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"
12 #include "components/policy/core/common/mock_configuration_policy_provider.h" 13 #include "components/policy/core/common/mock_configuration_policy_provider.h"
13 14
15 struct ManagementPolicyRequestLog {
16 std::string all_headers;
17 std::string host;
18 };
19
14 // The ExtensionSettings policy affects host permissions which impacts several 20 // The ExtensionSettings policy affects host permissions which impacts several
15 // API integration tests. This class enables easy declaration of 21 // API integration tests. This class enables easy declaration of
16 // ExtensionSettings policies and functions commonly used during these tests. 22 // ExtensionSettings policies and functions commonly used during these tests.
17 class ExtensionApiTestWithManagementPolicy : public ExtensionApiTest { 23 class ExtensionApiTestWithManagementPolicy : public ExtensionApiTest {
18 public: 24 public:
19 ExtensionApiTestWithManagementPolicy(); 25 ExtensionApiTestWithManagementPolicy();
20 ~ExtensionApiTestWithManagementPolicy() override; 26 ~ExtensionApiTestWithManagementPolicy() override;
21 void SetUpInProcessBrowserTestFixture() override; 27 void SetUpInProcessBrowserTestFixture() override;
22 void SetUpOnMainThread() override; 28 void SetUpOnMainThread() override;
23 29
24 protected: 30 protected:
25 policy::MockConfigurationPolicyProvider policy_provider_; 31 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_;
26 38
27 DISALLOW_COPY_AND_ASSIGN(ExtensionApiTestWithManagementPolicy); 39 DISALLOW_COPY_AND_ASSIGN(ExtensionApiTestWithManagementPolicy);
28 }; 40 };
29 41
30 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_WITH_MANAGEMENT_POLICY_APITEST_H_ 42 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_WITH_MANAGEMENT_POLICY_APITEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698