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 #include "chrome/test/nacl/nacl_browsertest_util.h"
8 #include "base/command_line.h"
9 #include "base/json/json_reader.h"
10 #include "base/path_service.h"
11 #include "base/values.h"
12 #include "chrome/browser/ui/browser.h"
13 #include "chrome/browser/ui/tabs/tab_strip_model.h"
14 #include "chrome/common/chrome_paths.h"
15 #include "chrome/common/chrome_switches.h"
16 #include "chrome/test/base/ui_test_utils.h"
17 #include "content/public/browser/plugin_service.h"
18 #include "content/public/browser/web_contents.h"
19 #include "content/public/common/webplugininfo.h"
20 #include "net/base/net_util.h"
22 typedef TestMessageHandler::MessageResponse MessageResponse
;
24 MessageResponse
StructuredMessageHandler::HandleMessage(
25 const std::string
& json
) {
26 scoped_ptr
<base::Value
> value
;
27 base::JSONReader
reader(base::JSON_ALLOW_TRAILING_COMMAS
);
28 // Automation messages are stringified before they are sent because the
29 // automation channel cannot handle arbitrary objects. This means we
30 // need to decode the json twice to get the original message.
31 value
.reset(reader
.ReadToValue(json
));
33 return InternalError("Could parse automation JSON: " + json
+
34 " because " + reader
.GetErrorMessage());
37 if (!value
->GetAsString(&temp
))
38 return InternalError("Message was not a string: " + json
);
40 value
.reset(reader
.ReadToValue(temp
));
42 return InternalError("Could not parse message JSON: " + temp
+
43 " because " + reader
.GetErrorMessage());
45 base::DictionaryValue
* msg
;
46 if (!value
->GetAsDictionary(&msg
))
47 return InternalError("Message was not an object: " + temp
);
50 if (!msg
->GetString("type", &type
))
51 return MissingField("unknown", "type");
53 return HandleStructuredMessage(type
, msg
);
56 MessageResponse
StructuredMessageHandler::MissingField(
57 const std::string
& type
,
58 const std::string
& field
) {
59 return InternalError(type
+ " message did not have field: " + field
);
62 MessageResponse
StructuredMessageHandler::InternalError(
63 const std::string
& reason
) {
68 LoadTestMessageHandler::LoadTestMessageHandler()
69 : test_passed_(false) {
72 void LoadTestMessageHandler::Log(const std::string
& type
,
73 const std::string
& message
) {
74 // TODO(ncbray) better logging.
75 LOG(INFO
) << type
<< " " << message
;
78 MessageResponse
LoadTestMessageHandler::HandleStructuredMessage(
79 const std::string
& type
,
80 base::DictionaryValue
* msg
) {
83 if (!msg
->GetString("message", &message
))
84 return MissingField(type
, "message");
87 } else if (type
== "Shutdown") {
89 if (!msg
->GetString("message", &message
))
90 return MissingField(type
, "message");
91 if (!msg
->GetBoolean("passed", &test_passed_
))
92 return MissingField(type
, "passed");
93 Log("SHUTDOWN", message
);
96 return InternalError("Unknown message type: " + type
);
100 // A message handler for nacl_integration tests ported to be browser_tests.
101 // nacl_integration tests report to their test jig using a series of RPC calls
102 // that are encoded as URL requests. When these tests run as browser_tests,
103 // they make the same RPC requests, but use the automation channel instead of
104 // URL requests. This message handler decodes and responds to these requests.
105 class NaClIntegrationMessageHandler
: public StructuredMessageHandler
{
107 NaClIntegrationMessageHandler();
109 void Log(const std::string
& message
);
111 virtual MessageResponse
HandleStructuredMessage(
112 const std::string
& type
,
113 base::DictionaryValue
* msg
) OVERRIDE
;
115 bool test_passed() const {
122 DISALLOW_COPY_AND_ASSIGN(NaClIntegrationMessageHandler
);
125 NaClIntegrationMessageHandler::NaClIntegrationMessageHandler()
126 : test_passed_(false) {
129 void NaClIntegrationMessageHandler::Log(const std::string
& message
) {
130 // TODO(ncbray) better logging.
131 LOG(INFO
) << "|||| " << message
;
134 MessageResponse
NaClIntegrationMessageHandler::HandleStructuredMessage(
135 const std::string
& type
,
136 base::DictionaryValue
* msg
) {
137 if (type
== "TestLog") {
139 if (!msg
->GetString("message", &message
))
140 return MissingField(type
, "message");
143 } else if (type
== "Shutdown") {
145 if (!msg
->GetString("message", &message
))
146 return MissingField(type
, "message");
147 if (!msg
->GetBoolean("passed", &test_passed_
))
148 return MissingField(type
, "passed");
151 } else if (type
== "Ping") {
153 } else if (type
== "JavaScriptIsAlive") {
156 return InternalError("Unknown message type: " + type
);
160 // NaCl browser tests serve files out of the build directory because nexes and
161 // pexes are artifacts of the build. To keep things tidy, all test data is kept
162 // in a subdirectory. Several variants of a test may be run, for example when
163 // linked against newlib and when linked against glibc. These variants are kept
164 // in different subdirectories. For example, the build directory will look
165 // something like this on Linux:
171 static bool GetNaClVariantRoot(const base::FilePath::StringType
& variant
,
172 base::FilePath
* document_root
) {
173 if (!ui_test_utils::GetRelativeBuildDirectory(document_root
))
175 *document_root
= document_root
->Append(FILE_PATH_LITERAL("nacl_test_data"));
176 *document_root
= document_root
->Append(variant
);
180 static void AddPnaclParm(const base::FilePath::StringType
& url
,
181 base::FilePath::StringType
* url_with_parm
) {
182 if (url
.find(FILE_PATH_LITERAL("?")) == base::FilePath::StringType::npos
) {
183 *url_with_parm
= url
+ FILE_PATH_LITERAL("?pnacl=1");
185 *url_with_parm
= url
+ FILE_PATH_LITERAL("&pnacl=1");
189 static void AddPnaclDisabledParm(const base::FilePath::StringType
& url
,
190 base::FilePath::StringType
* url_with_parm
) {
191 if (url
.find(FILE_PATH_LITERAL("?")) == base::FilePath::StringType::npos
) {
192 *url_with_parm
= url
+ FILE_PATH_LITERAL("?pnacl_disabled=1");
194 *url_with_parm
= url
+ FILE_PATH_LITERAL("&pnacl_disabled=1");
198 NaClBrowserTestBase::NaClBrowserTestBase() {
201 NaClBrowserTestBase::~NaClBrowserTestBase() {
204 void NaClBrowserTestBase::SetUpCommandLine(CommandLine
* command_line
) {
205 command_line
->AppendSwitch(switches::kEnableNaCl
);
208 void NaClBrowserTestBase::SetUpInProcessBrowserTestFixture() {
210 base::FilePath plugin_lib
;
211 ASSERT_TRUE(PathService::Get(chrome::FILE_NACL_PLUGIN
, &plugin_lib
));
212 ASSERT_TRUE(base::PathExists(plugin_lib
)) << plugin_lib
.value();
214 ASSERT_TRUE(StartTestServer()) << "Cannot start test server.";
217 bool NaClBrowserTestBase::GetDocumentRoot(base::FilePath
* document_root
) {
218 return GetNaClVariantRoot(Variant(), document_root
);
221 bool NaClBrowserTestBase::IsAPnaclTest() {
225 bool NaClBrowserTestBase::IsPnaclDisabled() {
229 GURL
NaClBrowserTestBase::TestURL(
230 const base::FilePath::StringType
& url_fragment
) {
231 base::FilePath expanded_url
= base::FilePath(FILE_PATH_LITERAL("files"));
232 expanded_url
= expanded_url
.Append(url_fragment
);
233 return test_server_
->GetURL(expanded_url
.MaybeAsASCII());
236 bool NaClBrowserTestBase::RunJavascriptTest(const GURL
& url
,
237 TestMessageHandler
* handler
) {
238 JavascriptTestObserver
observer(
239 browser()->tab_strip_model()->GetActiveWebContents()->GetRenderViewHost(),
241 ui_test_utils::NavigateToURL(browser(), url
);
242 return observer
.Run();
245 void NaClBrowserTestBase::RunLoadTest(
246 const base::FilePath::StringType
& test_file
) {
247 LoadTestMessageHandler handler
;
248 base::FilePath::StringType test_file_with_pnacl
= test_file
;
249 if (IsAPnaclTest()) {
250 AddPnaclParm(test_file
, &test_file_with_pnacl
);
252 base::FilePath::StringType test_file_with_both
= test_file_with_pnacl
;
253 if (IsPnaclDisabled()) {
254 AddPnaclDisabledParm(test_file_with_pnacl
, &test_file_with_both
);
256 bool ok
= RunJavascriptTest(TestURL(test_file_with_both
), &handler
);
257 ASSERT_TRUE(ok
) << handler
.error_message();
258 ASSERT_TRUE(handler
.test_passed()) << "Test failed.";
261 void NaClBrowserTestBase::RunNaClIntegrationTest(
262 const base::FilePath::StringType
& url_fragment
) {
263 NaClIntegrationMessageHandler handler
;
264 base::FilePath::StringType url_fragment_with_pnacl
= url_fragment
;
265 if (IsAPnaclTest()) {
266 AddPnaclParm(url_fragment
, &url_fragment_with_pnacl
);
268 base::FilePath::StringType url_fragment_with_both
= url_fragment_with_pnacl
;
269 if (IsPnaclDisabled()) {
270 AddPnaclDisabledParm(url_fragment_with_pnacl
, &url_fragment_with_both
);
272 bool ok
= RunJavascriptTest(TestURL(url_fragment_with_both
), &handler
);
273 ASSERT_TRUE(ok
) << handler
.error_message();
274 ASSERT_TRUE(handler
.test_passed()) << "Test failed.";
277 bool NaClBrowserTestBase::StartTestServer() {
278 // Launch the web server.
279 base::FilePath document_root
;
280 if (!GetDocumentRoot(&document_root
))
282 test_server_
.reset(new net::SpawnedTestServer(
283 net::SpawnedTestServer::TYPE_HTTP
,
284 net::SpawnedTestServer::kLocalhost
,
286 return test_server_
->Start();
289 base::FilePath::StringType
NaClBrowserTestNewlib::Variant() {
290 return FILE_PATH_LITERAL("newlib");
293 base::FilePath::StringType
NaClBrowserTestGLibc::Variant() {
294 return FILE_PATH_LITERAL("glibc");
297 base::FilePath::StringType
NaClBrowserTestPnacl::Variant() {
298 return FILE_PATH_LITERAL("pnacl");
301 bool NaClBrowserTestPnacl::IsAPnaclTest() {
305 base::FilePath::StringType
NaClBrowserTestPnaclDisabled::Variant() {
306 return FILE_PATH_LITERAL("pnacl");
309 bool NaClBrowserTestPnaclDisabled::IsAPnaclTest() {
313 bool NaClBrowserTestPnaclDisabled::IsPnaclDisabled() {
316 void NaClBrowserTestPnaclDisabled::SetUpCommandLine(CommandLine
* command_line
) {
317 NaClBrowserTestBase::SetUpCommandLine(command_line
);
318 command_line
->AppendSwitch(switches::kDisablePnacl
);
321 base::FilePath::StringType
NaClBrowserTestStatic::Variant() {
322 return FILE_PATH_LITERAL("static");
325 bool NaClBrowserTestStatic::GetDocumentRoot(base::FilePath
* document_root
) {
326 *document_root
= base::FilePath(FILE_PATH_LITERAL("chrome/test/data/nacl"));