Popular sites on the NTP: check that experiment group StartsWith (rather than IS...
[chromium-blink-merge.git] / chrome / browser / ui / webui / web_ui_test_handler.cc
blobd4e03aabba7aa0e4ab592b4240a8a8ca67d6bae6
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/browser/ui/webui/web_ui_test_handler.h"
7 #include "base/bind.h"
8 #include "base/bind_helpers.h"
9 #include "base/strings/utf_string_conversions.h"
10 #include "base/values.h"
11 #include "chrome/common/render_messages.h"
12 #include "content/public/browser/notification_details.h"
13 #include "content/public/browser/notification_registrar.h"
14 #include "content/public/browser/notification_types.h"
15 #include "content/public/browser/render_frame_host.h"
16 #include "content/public/browser/render_view_host.h"
17 #include "content/public/browser/web_contents.h"
18 #include "content/public/browser/web_ui.h"
19 #include "content/public/test/test_utils.h"
20 #include "testing/gtest/include/gtest/gtest.h"
22 using content::RenderViewHost;
24 WebUITestHandler::WebUITestHandler()
25 : test_done_(false),
26 test_succeeded_(false),
27 run_test_done_(false),
28 run_test_succeeded_(false),
29 is_waiting_(false) {
32 void WebUITestHandler::PreloadJavaScript(const base::string16& js_text,
33 RenderViewHost* preload_host) {
34 DCHECK(preload_host);
35 preload_host->Send(new ChromeViewMsg_WebUIJavaScript(
36 preload_host->GetRoutingID(), js_text));
39 void WebUITestHandler::RunJavaScript(const base::string16& js_text) {
40 web_ui()->GetWebContents()->GetMainFrame()->ExecuteJavaScriptForTests(
41 js_text);
44 bool WebUITestHandler::RunJavaScriptTestWithResult(
45 const base::string16& js_text) {
46 test_succeeded_ = false;
47 run_test_succeeded_ = false;
48 content::RenderFrameHost* frame = web_ui()->GetWebContents()->GetMainFrame();
49 frame->ExecuteJavaScriptForTests(
50 js_text, base::Bind(&WebUITestHandler::JavaScriptComplete,
51 base::Unretained(this)));
52 return WaitForResult();
55 void WebUITestHandler::RegisterMessages() {
56 web_ui()->RegisterMessageCallback("testResult",
57 base::Bind(&WebUITestHandler::HandleTestResult, base::Unretained(this)));
60 void WebUITestHandler::HandleTestResult(const base::ListValue* test_result) {
61 // Quit the message loop if |is_waiting_| so waiting process can get result or
62 // error. To ensure this gets done, do this before ASSERT* calls.
63 if (is_waiting_)
64 base::MessageLoopForUI::current()->Quit();
66 SCOPED_TRACE("WebUITestHandler::HandleTestResult");
68 EXPECT_FALSE(test_done_);
69 test_done_ = true;
70 test_succeeded_ = false;
72 ASSERT_TRUE(test_result->GetBoolean(0, &test_succeeded_));
73 if (!test_succeeded_) {
74 std::string message;
75 ASSERT_TRUE(test_result->GetString(1, &message));
76 LOG(ERROR) << message;
80 void WebUITestHandler::JavaScriptComplete(const base::Value* result) {
81 // Quit the message loop if |is_waiting_| so waiting process can get result or
82 // error. To ensure this gets done, do this before ASSERT* calls.
83 if (is_waiting_)
84 base::MessageLoopForUI::current()->Quit();
86 SCOPED_TRACE("WebUITestHandler::JavaScriptComplete");
88 EXPECT_FALSE(run_test_done_);
89 run_test_done_ = true;
90 run_test_succeeded_ = false;
92 ASSERT_TRUE(result->GetAsBoolean(&run_test_succeeded_));
95 bool WebUITestHandler::WaitForResult() {
96 SCOPED_TRACE("WebUITestHandler::WaitForResult");
97 test_done_ = false;
98 run_test_done_ = false;
99 is_waiting_ = true;
101 // Either sync test completion or the testDone() will cause message loop
102 // to quit.
103 content::RunMessageLoop();
105 // Run a second message loop when not |run_test_done_| so that the sync test
106 // completes, or |run_test_succeeded_| but not |test_done_| so async tests
107 // complete.
108 if (!run_test_done_ || (run_test_succeeded_ && !test_done_)) {
109 content::RunMessageLoop();
112 is_waiting_ = false;
114 // To succeed the test must execute as well as pass the test.
115 return run_test_succeeded_ && test_succeeded_;