1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_TEST_PPAPI_PPAPI_TEST_H_
6 #define CHROME_TEST_PPAPI_PPAPI_TEST_H_
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "chrome/test/base/in_process_browser_test.h"
13 #include "content/public/test/javascript_test_observer.h"
14 #include "net/test/spawned_test_server/spawned_test_server.h"
20 class PPAPITestMessageHandler
: public content::TestMessageHandler
{
22 PPAPITestMessageHandler();
24 virtual MessageResponse
HandleMessage(const std::string
& json
) override
;
25 virtual void Reset() override
;
27 const std::string
& message() const {
34 DISALLOW_COPY_AND_ASSIGN(PPAPITestMessageHandler
);
37 class PPAPITestBase
: public InProcessBrowserTest
{
41 // InProcessBrowserTest:
42 virtual void SetUp() override
;
43 virtual void SetUpCommandLine(base::CommandLine
* command_line
) override
;
44 virtual void SetUpOnMainThread() override
;
46 virtual std::string
BuildQuery(const std::string
& base
,
47 const std::string
& test_case
) = 0;
49 // Returns the URL to load for file: tests.
50 GURL
GetTestFileUrl(const std::string
& test_case
);
51 virtual void RunTest(const std::string
& test_case
);
52 virtual void RunTestViaHTTP(const std::string
& test_case
);
53 virtual void RunTestWithSSLServer(const std::string
& test_case
);
54 virtual void RunTestWithWebSocketServer(const std::string
& test_case
);
55 virtual void RunTestIfAudioOutputAvailable(const std::string
& test_case
);
56 virtual void RunTestViaHTTPIfAudioOutputAvailable(
57 const std::string
& test_case
);
60 class InfoBarObserver
: public content::NotificationObserver
{
62 explicit InfoBarObserver(PPAPITestBase
* test_base
);
65 void ExpectInfoBarAndAccept(bool should_accept
);
68 // content::NotificationObserver:
69 virtual void Observe(int type
,
70 const content::NotificationSource
& source
,
71 const content::NotificationDetails
& details
) override
;
73 void VerifyInfoBarState();
75 content::NotificationRegistrar registrar_
;
76 PPAPITestBase
* test_base_
;
77 bool expecting_infobar_
;
81 // Runs the test for a tab given the tab that's already navigated to the
83 void RunTestURL(const GURL
& test_url
);
84 // Gets the URL of the the given |test_case| for the given HTTP test server.
85 // If |extra_params| is non-empty, it will be appended as URL parameters.
86 GURL
GetTestURL(const net::SpawnedTestServer
& http_server
,
87 const std::string
& test_case
,
88 const std::string
& extra_params
);
91 // In-process plugin test runner. See OutOfProcessPPAPITest below for the
92 // out-of-process version.
93 class PPAPITest
: public PPAPITestBase
{
97 virtual void SetUpCommandLine(base::CommandLine
* command_line
) override
;
99 virtual std::string
BuildQuery(const std::string
& base
,
100 const std::string
& test_case
) override
;
102 bool in_process_
; // Controls the --ppapi-in-process switch.
105 class PPAPIPrivateTest
: public PPAPITest
{
107 virtual void SetUpCommandLine(base::CommandLine
* command_line
) override
;
110 // Variant of PPAPITest that runs plugins out-of-process to test proxy
112 class OutOfProcessPPAPITest
: public PPAPITest
{
114 OutOfProcessPPAPITest();
116 virtual void SetUpCommandLine(base::CommandLine
* command_line
) override
;
119 class OutOfProcessPPAPIPrivateTest
: public OutOfProcessPPAPITest
{
121 virtual void SetUpCommandLine(base::CommandLine
* command_line
) override
;
124 // NaCl plugin test runner for Newlib runtime.
125 class PPAPINaClTest
: public PPAPITestBase
{
127 virtual void SetUpCommandLine(base::CommandLine
* command_line
) override
;
128 virtual void SetUpOnMainThread() override
;
129 // PPAPITestBase overrides.
130 virtual void RunTest(const std::string
& test_case
) override
;
131 virtual void RunTestViaHTTP(const std::string
& test_case
) override
;
132 virtual void RunTestWithSSLServer(const std::string
& test_case
) override
;
133 virtual void RunTestWithWebSocketServer(
134 const std::string
& test_case
) override
;
135 virtual void RunTestIfAudioOutputAvailable(
136 const std::string
& test_case
) override
;
137 virtual void RunTestViaHTTPIfAudioOutputAvailable(
138 const std::string
& test_case
) override
;
141 // NaCl plugin test runner for Newlib runtime.
142 class PPAPINaClNewlibTest
: public PPAPINaClTest
{
144 virtual std::string
BuildQuery(const std::string
& base
,
145 const std::string
& test_case
) override
;
148 class PPAPIPrivateNaClNewlibTest
: public PPAPINaClNewlibTest
{
150 virtual void SetUpCommandLine(base::CommandLine
* command_line
) override
;
153 // NaCl plugin test runner for GNU-libc runtime.
154 class PPAPINaClGLibcTest
: public PPAPINaClTest
{
156 virtual std::string
BuildQuery(const std::string
& base
,
157 const std::string
& test_case
) override
;
160 class PPAPIPrivateNaClGLibcTest
: public PPAPINaClGLibcTest
{
162 virtual void SetUpCommandLine(base::CommandLine
* command_line
) override
;
165 // NaCl plugin test runner for the PNaCl + Newlib runtime.
166 class PPAPINaClPNaClTest
: public PPAPINaClTest
{
168 virtual std::string
BuildQuery(const std::string
& base
,
169 const std::string
& test_case
) override
;
172 class PPAPIPrivateNaClPNaClTest
: public PPAPINaClPNaClTest
{
174 virtual void SetUpCommandLine(base::CommandLine
* command_line
) override
;
177 // Test Non-SFI Mode, using PNaCl toolchain to produce nexes.
178 class PPAPINaClPNaClNonSfiTest
: public PPAPINaClTest
{
180 virtual void SetUpCommandLine(base::CommandLine
* command_line
);
182 virtual std::string
BuildQuery(const std::string
& base
,
183 const std::string
& test_case
) override
;
186 // TODO(hidehiko): Switch NonSfi tests to use nacl_helper_nonsfi, when
187 // it is launched officially. See NaClBrowserTestPnaclTransitionalNonSfi
189 class PPAPINaClPNaClTransitionalNonSfiTest
: public PPAPINaClPNaClNonSfiTest
{
191 virtual void SetUpCommandLine(base::CommandLine
* command_line
) override
;
194 class PPAPIPrivateNaClPNaClNonSfiTest
: public PPAPINaClPNaClNonSfiTest
{
196 virtual void SetUpCommandLine(base::CommandLine
* command_line
) override
;
199 // TODO(hidehiko): Switch NonSfi tests to use nacl_helper_nonsfi, when
200 // it is launched officially. See NaClBrowserTestPnaclTransitionalNonSfi
202 class PPAPIPrivateNaClPNaClTransitionalNonSfiTest
203 : public PPAPIPrivateNaClPNaClNonSfiTest
{
205 virtual void SetUpCommandLine(base::CommandLine
* command_line
) override
;
209 class PPAPINaClTestDisallowedSockets
: public PPAPITestBase
{
211 virtual void SetUpCommandLine(base::CommandLine
* command_line
) override
;
213 virtual std::string
BuildQuery(const std::string
& base
,
214 const std::string
& test_case
) override
;
217 class PPAPIBrokerInfoBarTest
: public OutOfProcessPPAPITest
{
219 // PPAPITestBase override:
220 virtual void SetUpOnMainThread() override
;
223 #endif // CHROME_TEST_PPAPI_PPAPI_TEST_H_