| /* |
| * Copyright 2015 Google Inc. All Rights Reserved. |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #include <ostream> |
| #include <sstream> |
| #include <vector> |
| |
| #include "base/command_line.h" |
| #include "base/file_util.h" |
| #include "base/json/json_reader.h" |
| #include "base/message_loop.h" |
| #include "base/run_loop.h" |
| #include "base/string_util.h" |
| #include "base/values.h" |
| #include "cobalt/browser/web_module.h" |
| #include "cobalt/dom/csp_delegate_factory.h" |
| #include "cobalt/layout_tests/test_utils.h" |
| #include "cobalt/layout_tests/web_platform_test_parser.h" |
| #include "cobalt/math/size.h" |
| #include "cobalt/media/media_module.h" |
| #include "cobalt/network/network_module.h" |
| #include "cobalt/render_tree/resource_provider_stub.h" |
| #include "googleurl/src/gurl.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| |
| namespace cobalt { |
| namespace layout_tests { |
| |
| namespace { |
| |
| // A CspDelegate that behaves more like a "standard" one. i.e. it |
| // is permissive by default. This is for testing our compliance |
| // with the web-platform-test suite. |
| class CspDelegatePermissive : public dom::CspDelegateSecure { |
| public: |
| CspDelegatePermissive( |
| scoped_ptr<dom::CspViolationReporter> violation_reporter, const GURL& url, |
| const std::string& location_policy, |
| const base::Closure& policy_changed_callback) |
| : dom::CspDelegateSecure(violation_reporter.Pass(), url, location_policy, |
| policy_changed_callback) { |
| // Lies, but some checks in our parent require this. |
| was_header_received_ = true; |
| } |
| |
| static CspDelegate* Create( |
| scoped_ptr<dom::CspViolationReporter> violation_reporter, const GURL& url, |
| const std::string& location_policy, |
| const base::Closure& policy_changed_callback, |
| int insecure_allowed_token) { |
| UNREFERENCED_PARAMETER(insecure_allowed_token); |
| return new CspDelegatePermissive(violation_reporter.Pass(), url, |
| location_policy, policy_changed_callback); |
| } |
| |
| bool OnReceiveHeaders(const csp::ResponseHeaders& headers) OVERRIDE { |
| csp_->OnReceiveHeaders(headers); |
| if (!policy_changed_callback_.is_null()) { |
| policy_changed_callback_.Run(); |
| } |
| // |true| to allow the document to continue loading. |
| return true; |
| } |
| }; |
| |
| // Match the enums from testharness.js. |
| enum TestStatus { |
| kPass = 0, |
| kFail, |
| kTimeout, |
| kNotrun, |
| }; |
| |
| std::string TestStatusToString(int status) { |
| switch (status) { |
| case kPass: |
| return "PASS"; |
| case kFail: |
| return "FAIL"; |
| case kTimeout: |
| return "TIMEOUT"; |
| case kNotrun: |
| return "NOTRUN"; |
| } |
| NOTREACHED(); |
| return "FAIL"; |
| } |
| |
| struct TestResult { |
| std::string name; |
| int status; |
| std::string message; |
| std::string stack; |
| }; |
| |
| const char* kLogSuppressions[] = { |
| "<link> has unsupported rel value: help.", |
| "<link> has unsupported rel value: author.", |
| "synchronous XHR is not supported", |
| }; |
| |
| void Quit(base::RunLoop* run_loop) { |
| MessageLoop::current()->PostTask(FROM_HERE, run_loop->QuitClosure()); |
| } |
| |
| // Called when layout completes and results have been produced. We use this |
| // signal to stop the WebModule's message loop since our work is done after a |
| // layout has been performed. |
| void WebModuleOnRenderTreeProducedCallback( |
| base::optional<browser::WebModule::LayoutResults>* out_results, |
| base::RunLoop* run_loop, MessageLoop* message_loop, |
| const browser::WebModule::LayoutResults& results) { |
| out_results->emplace(results.render_tree, results.layout_time); |
| message_loop->PostTask(FROM_HERE, base::Bind(Quit, run_loop)); |
| } |
| |
| // This callback, when called, quits a message loop, outputs the error message |
| // and sets the success flag to false. |
| void WebModuleErrorCallback(base::RunLoop* run_loop, MessageLoop* message_loop, |
| const GURL& url, const std::string& error) { |
| LOG(FATAL) << "Error loading document: " << error << ". URL: " << url; |
| message_loop->PostTask(FROM_HERE, base::Bind(Quit, run_loop)); |
| } |
| |
| std::string RunWebPlatformTest(const GURL& url) { |
| LogFilter log_filter; |
| for (size_t i = 0; i < arraysize(kLogSuppressions); ++i) { |
| log_filter.Add(kLogSuppressions[i]); |
| } |
| |
| // Setup a message loop for the current thread since we will be constructing |
| // a WebModule, which requires a message loop to exist for the current |
| // thread. |
| MessageLoop message_loop(MessageLoop::TYPE_DEFAULT); |
| |
| const math::Size kDefaultViewportSize(640, 360); |
| |
| // Setup WebModule's auxiliary components. |
| |
| // Network module |
| network::NetworkModule::Options net_options; |
| net_options.require_https = false; |
| network::NetworkModule network_module(net_options); |
| |
| // Media module |
| render_tree::ResourceProviderStub resource_provider; |
| scoped_ptr<media::MediaModule> media_module(media::MediaModule::Create( |
| kDefaultViewportSize, &resource_provider, media::MediaModule::Options())); |
| |
| dom::CspDelegateFactory::GetInstance()->OverrideCreator( |
| dom::kCspEnforcementEnable, CspDelegatePermissive::Create); |
| // Use test runner mode to allow the content itself to dictate when it is |
| // ready for layout should be performed. See cobalt/dom/test_runner.h. |
| browser::WebModule::Options web_module_options; |
| web_module_options.layout_trigger = layout::LayoutManager::kTestRunnerMode; |
| // Prepare a slot for our results to be placed when ready. |
| base::optional<browser::WebModule::LayoutResults> results; |
| base::RunLoop run_loop; |
| |
| // Create the WebModule and wait for a layout to occur. |
| browser::WebModule web_module( |
| url, base::Bind(&WebModuleOnRenderTreeProducedCallback, &results, |
| &run_loop, MessageLoop::current()), |
| base::Bind(&WebModuleErrorCallback, &run_loop, MessageLoop::current()), |
| media_module.get(), &network_module, kDefaultViewportSize, |
| &resource_provider, 60.0f, web_module_options); |
| run_loop.Run(); |
| const std::string extract_results = |
| "document.getElementById(\"__testharness__results__\").textContent;"; |
| std::string output = web_module.ExecuteJavascript( |
| extract_results, base::SourceLocation(__FILE__, __LINE__, 1)); |
| return output; |
| } |
| |
| std::vector<TestResult> ParseResults(const std::string& json_results) { |
| std::vector<TestResult> test_results; |
| |
| scoped_ptr<base::Value> root; |
| base::JSONReader reader; |
| root.reset(reader.ReadToValue(json_results)); |
| if (!root) { |
| // Unparseable JSON, or empty string. |
| return test_results; |
| } |
| |
| base::DictionaryValue* root_as_dict; |
| EXPECT_EQ(true, root->GetAsDictionary(&root_as_dict)); |
| |
| base::ListValue* test_list; |
| EXPECT_EQ(true, root_as_dict->GetList("tests", &test_list)); |
| |
| for (size_t i = 0; i < test_list->GetSize(); ++i) { |
| TestResult result; |
| base::DictionaryValue* test_dict; |
| EXPECT_EQ(true, test_list->GetDictionary(i, &test_dict)); |
| EXPECT_EQ(true, test_dict->GetInteger("status", &result.status)); |
| EXPECT_EQ(true, test_dict->GetString("name", &result.name)); |
| |
| // These fields may be null. |
| test_dict->GetString("message", &result.message); |
| test_dict->GetString("stack", &result.stack); |
| test_results.push_back(result); |
| } |
| return test_results; |
| } |
| |
| ::testing::AssertionResult CheckResults( |
| const char* /* expectation_str */, const char* /* results_str */, |
| WebPlatformTestInfo::State expectation, |
| const std::vector<TestResult>& results) { |
| WebPlatformTestInfo::State outcome = WebPlatformTestInfo::kPass; |
| if (results.size() == 0) { |
| outcome = WebPlatformTestInfo::kFail; |
| } |
| |
| std::ostringstream output; |
| for (std::vector<TestResult>::const_iterator it = results.begin(); |
| it != results.end(); ++it) { |
| if (it->status != kPass) { |
| outcome = WebPlatformTestInfo::kFail; |
| } |
| output << std::endl |
| << "Test \"" << it->name |
| << "\" status: " << TestStatusToString(it->status); |
| if (!it->message.empty()) { |
| output << std::endl << it->message; |
| } |
| if (!it->stack.empty()) { |
| output << std::endl << it->stack; |
| } |
| } |
| |
| if (outcome == expectation) { |
| return ::testing::AssertionSuccess(); |
| } else { |
| return ::testing::AssertionFailure() |
| << "Expected: " << TestStatusToString(expectation) << std::endl |
| << "Actual: " << TestStatusToString(outcome) << std::endl |
| << output.str(); |
| } |
| } |
| |
| } // namespace |
| |
| class WebPlatformTest : public ::testing::TestWithParam<WebPlatformTestInfo> {}; |
| TEST_P(WebPlatformTest, Run) { |
| // Output the name of the current input file so that it is visible in test |
| // output. |
| std::string test_server = |
| CommandLine::ForCurrentProcess()->GetSwitchValueASCII( |
| "web-platform-test-server"); |
| if (test_server.empty()) { |
| FilePath url_path = GetTestInputRootDirectory() |
| .Append(FILE_PATH_LITERAL("web-platform-tests")); |
| #if defined(COBALT_LINUX) || defined(COBALT_WIN) |
| // Get corp configuration. |
| url_path = url_path.Append(FILE_PATH_LITERAL("corp.url")); |
| #else |
| // Get lab configuration. |
| url_path = url_path.Append(FILE_PATH_LITERAL("lab.url")); |
| #endif |
| file_util::ReadFileToString(url_path, &test_server); |
| TrimWhitespaceASCII(test_server, TRIM_ALL, &test_server); |
| ASSERT_FALSE(test_server.empty()); |
| } |
| GURL test_url = GURL(test_server).Resolve(GetParam().url); |
| |
| std::cout << "(" << test_url << ")" << std::endl; |
| |
| std::string json_results = RunWebPlatformTest(test_url); |
| std::vector<TestResult> results = ParseResults(json_results); |
| EXPECT_PRED_FORMAT2(CheckResults, GetParam().expectation, results); |
| } |
| |
| // Disable on Windows until network stack is implemented. |
| #if !defined(COBALT_WIN) |
| // XML Http Request test cases. |
| INSTANTIATE_TEST_CASE_P( |
| xhr, WebPlatformTest, |
| ::testing::ValuesIn(EnumerateWebPlatformTests("XMLHttpRequest"))); |
| |
| INSTANTIATE_TEST_CASE_P( |
| csp, WebPlatformTest, |
| ::testing::ValuesIn(EnumerateWebPlatformTests("content-security-policy"))); |
| #endif // !defined(COBALT_WIN) |
| |
| } // namespace layout_tests |
| } // namespace cobalt |