blob: 1f04a2156c76280b99b20ef8b24573b282a4d11d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_TEST_UI_PPAPI_UITEST_H_
#define CHROME_TEST_UI_PPAPI_UITEST_H_
#pragma once
#include <string>
#include "chrome/test/base/in_process_browser_test.h"
class PPAPITestBase : public InProcessBrowserTest {
public:
PPAPITestBase();
virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
virtual std::string BuildQuery(const std::string& base,
const std::string& test_case) = 0;
// Returns the URL to load for file: tests.
GURL GetTestFileUrl(const std::string& test_case);
void RunTest(const std::string& test_case);
// Run the test and reload. This can test for clean shutdown, including leaked
// instance object vars.
void RunTestAndReload(const std::string& test_case);
void RunTestViaHTTP(const std::string& test_case);
void RunTestWithWebSocketServer(const std::string& test_case);
std::string StripPrefixes(const std::string& test_name);
protected:
// Runs the test for a tab given the tab that's already navigated to the
// given URL.
void RunTestURL(const GURL& test_url);
};
// In-process plugin test runner. See OutOfProcessPPAPITest below for the
// out-of-process version.
class PPAPITest : public PPAPITestBase {
public:
PPAPITest();
virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
virtual std::string BuildQuery(const std::string& base,
const std::string& test_case) OVERRIDE;
};
// Variant of PPAPITest that runs plugins out-of-process to test proxy
// codepaths.
class OutOfProcessPPAPITest : public PPAPITest {
public:
OutOfProcessPPAPITest();
virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
};
// NaCl plugin test runner.
class PPAPINaClTest : public PPAPITestBase {
public:
PPAPINaClTest();
virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
virtual std::string BuildQuery(const std::string& base,
const std::string& test_case) OVERRIDE;
};
class PPAPINaClTestDisallowedSockets : public PPAPITestBase {
public:
PPAPINaClTestDisallowedSockets();
virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
virtual std::string BuildQuery(const std::string& base,
const std::string& test_case) OVERRIDE;
};
#endif // CHROME_TEST_UI_PPAPI_UITEST_H_
|