1 // Copyright 2014 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_BASE_WEB_UI_BROWSER_TEST_H_
6 #define CHROME_TEST_BASE_WEB_UI_BROWSER_TEST_H_
11 #include "base/files/file_path.h"
12 #include "chrome/test/base/in_process_browser_test.h"
13 #include "chrome/test/base/javascript_browser_test.h"
22 class WebUIMessageHandler
;
25 class TestChromeWebUIControllerFactory
;
26 class WebUITestHandler
;
28 // This macro simplifies the declaration of simple javascript unit tests.
30 // WEB_UI_UNITTEST_F(MyWebUIPageTest, myJavascriptUnittest);
31 #define WEB_UI_UNITTEST_F(x, y) \
32 IN_PROC_BROWSER_TEST_F(x, y) { ASSERT_TRUE(RunJavascriptTest(#y)); }
34 // The runner of WebUI javascript based tests.
35 // See chrome/test/data/webui/test_api.js for the javascript side test API's.
37 // These tests should follow the form given in:
38 // chrome/test/data/webui/sample_downloads.js.
39 // and the lone test within this class.
40 class WebUIBrowserTest
: public JavaScriptBrowserTest
{
42 ~WebUIBrowserTest() override
;
44 // Runs a javascript function in the context of all libraries.
45 // Note that calls to functions in test_api.js are not supported.
46 // Takes ownership of Value* arguments.
47 bool RunJavascriptFunction(const std::string
& function_name
);
48 bool RunJavascriptFunction(const std::string
& function_name
,
50 bool RunJavascriptFunction(const std::string
& function_name
,
53 bool RunJavascriptFunction(const std::string
& function_name
,
54 const ConstValueVector
& function_arguments
);
56 // Runs a test fixture that may include calls to functions in test_api.js.
57 bool RunJavascriptTestF(bool is_async
,
58 const std::string
& test_fixture
,
59 const std::string
& test_name
);
61 // Runs a test that may include calls to functions in test_api.js.
62 // Takes ownership of Value* arguments.
63 bool RunJavascriptTest(const std::string
& test_name
);
64 bool RunJavascriptTest(const std::string
& test_name
, base::Value
* arg
);
65 bool RunJavascriptTest(const std::string
& test_name
,
68 bool RunJavascriptTest(const std::string
& test_name
,
69 const ConstValueVector
& test_arguments
);
71 // Runs a test that may include calls to functions in test_api.js, and waits
72 // for call to testDone(). Takes ownership of Value* arguments.
73 bool RunJavascriptAsyncTest(const std::string
& test_name
);
74 bool RunJavascriptAsyncTest(const std::string
& test_name
, base::Value
* arg
);
75 bool RunJavascriptAsyncTest(const std::string
& test_name
,
78 bool RunJavascriptAsyncTest(const std::string
& test_name
,
82 bool RunJavascriptAsyncTest(const std::string
& test_name
,
83 const ConstValueVector
& test_arguments
);
85 // Sends message through |preload_host| to preload javascript libraries and
86 // sets the |libraries_preloaded| flag to prevent re-loading at next
87 // javascript invocation.
88 void PreLoadJavascriptLibraries(const std::string
& preload_test_fixture
,
89 const std::string
& preload_test_name
,
90 content::RenderViewHost
* preload_host
);
92 // Called by javascript-generated test bodies to browse to a page and preload
93 // the javascript for the given |preload_test_fixture| and
94 // |preload_test_name|. chrome.send will be overridden to allow javascript
96 void BrowsePreload(const GURL
& browse_to
);
98 // Called by javascript-generated test bodies to browse to a page and preload
99 // the javascript for the given |preload_test_fixture| and
100 // |preload_test_name|. chrome.send will be overridden to allow javascript
102 void BrowsePrintPreload(const GURL
& browse_to
);
105 // URL to dummy WebUI page for testing framework.
106 static const char kDummyURL
[];
110 // Accessors for preload test fixture and name.
111 void set_preload_test_fixture(const std::string
& preload_test_fixture
);
112 void set_preload_test_name(const std::string
& preload_test_name
);
114 // Set up & tear down console error catching.
115 void SetUpOnMainThread() override
;
116 void TearDownOnMainThread() override
;
118 // Set a WebUI instance to run tests on.
119 void SetWebUIInstance(content::WebUI
* web_ui
);
121 // Returns a mock WebUI object under test (if any).
122 virtual content::WebUIMessageHandler
* GetMockMessageHandler();
124 // Returns a file:// GURL constructed from |path| inside the test data dir for
126 static GURL
WebUITestDataPathToURL(const base::FilePath::StringType
& path
);
129 // Loads all libraries added with AddLibrary(), and calls |function_name| with
130 // |function_arguments|. When |is_test| is true, the framework wraps
131 // |function_name| with a test helper function, which waits for completion,
132 // logging an error message on failure, otherwise |function_name| is called
133 // asynchronously. When |preload_host| is non-NULL, sends the javascript to
134 // the RenderView for evaluation at the appropriate time before the onload
135 // call is made. Passes |is_async| along to runTest wrapper.
136 bool RunJavascriptUsingHandler(const std::string
& function_name
,
137 const ConstValueVector
& function_arguments
,
140 content::RenderViewHost
* preload_host
);
142 // Attaches mock and test handlers.
143 void SetupHandlers();
145 // Handles test framework messages.
146 scoped_ptr
<WebUITestHandler
> test_handler_
;
148 // Indicates that the libraries have been pre-loaded and to not load them
150 bool libraries_preloaded_
;
152 // Saves the states of |test_fixture| and |test_name| for calling
153 // PreloadJavascriptLibraries().
154 std::string preload_test_fixture_
;
155 std::string preload_test_name_
;
157 // When this is non-NULL, this is The WebUI instance used for testing.
158 // Otherwise the selected tab's web_ui is used.
159 content::WebUI
* override_selected_web_ui_
;
161 scoped_ptr
<TestChromeWebUIControllerFactory
> test_factory_
;
164 #endif // CHROME_TEST_BASE_WEB_UI_BROWSER_TEST_H_