// 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. #include "base/compiler_specific.h" #include "content/public/test/render_view_test.h" #include "ppapi/proxy/connection.h" #include "ppapi/proxy/url_request_info_resource.h" #include "ppapi/shared_impl/test_globals.h" #include "ppapi/shared_impl/url_request_info_data.h" #include "ppapi/thunk/thunk.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" #include "webkit/plugins/ppapi/url_request_info_util.h" #include "webkit/user_agent/user_agent.h" #include "webkit/user_agent/user_agent_util.h" // This test is a end-to-end test from the resource to the WebKit request // object. The actual resource implementation is so simple, it makes sense to // test it by making sure the conversion routines actually work at the same // time. using WebKit::WebCString; using WebKit::WebFrame; using WebKit::WebFrameClient; using WebKit::WebString; using WebKit::WebView; using WebKit::WebURL; using WebKit::WebURLRequest; namespace { bool IsExpected(const WebCString& web_string, const char* expected) { const char* result = web_string.data(); return strcmp(result, expected) == 0; } bool IsExpected(const WebString& web_string, const char* expected) { return IsExpected(web_string.utf8(), expected); } // The base class destructor is protected, so derive. class TestWebFrameClient : public WebFrameClient { }; } // namespace using ppapi::proxy::URLRequestInfoResource; using ppapi::URLRequestInfoData; // TODO(brettw) move to content namespace when url_request_info_util.h is moved // to this directory. This file used to be in webkit/plugins/ppapi and had to // be moved in advance of the rest of the files to make things compile. namespace webkit { namespace ppapi { class URLRequestInfoTest : public content::RenderViewTest { public: URLRequestInfoTest() : pp_instance_(1234) { } virtual void SetUp() OVERRIDE { RenderViewTest::SetUp(); test_globals_.GetResourceTracker()->DidCreateInstance(pp_instance_); // This resource doesn't do IPC, so a null connection is fine. info_ = new URLRequestInfoResource(::ppapi::proxy::Connection(), pp_instance_, URLRequestInfoData()); } virtual void TearDown() OVERRIDE { test_globals_.GetResourceTracker()->DidDeleteInstance(pp_instance_); RenderViewTest::TearDown(); } bool GetDownloadToFile() { WebURLRequest web_request; URLRequestInfoData data = info_->GetData(); if (!CreateWebURLRequest(&data, GetMainFrame(), &web_request)) return false; return web_request.downloadToFile(); } WebCString GetURL() { WebURLRequest web_request; URLRequestInfoData data = info_->GetData(); if (!CreateWebURLRequest(&data, GetMainFrame(), &web_request)) return WebCString(); return web_request.url().spec(); } WebString GetMethod() { WebURLRequest web_request; URLRequestInfoData data = info_->GetData(); if (!CreateWebURLRequest(&data, GetMainFrame(), &web_request)) return WebString(); return web_request.httpMethod(); } WebString GetHeaderValue(const char* field) { WebURLRequest web_request; URLRequestInfoData data = info_->GetData(); if (!CreateWebURLRequest(&data, GetMainFrame(), &web_request)) return WebString(); return web_request.httpHeaderField(WebString::fromUTF8(field)); } bool SetBooleanProperty(PP_URLRequestProperty prop, bool b) { return info_->SetBooleanProperty(prop, b); } bool SetStringProperty(PP_URLRequestProperty prop, const std::string& s) { return info_->SetStringProperty(prop, s); } PP_Instance pp_instance_; // Needs to be alive for resource tracking to work. ::ppapi::TestGlobals test_globals_; scoped_refptr info_; }; TEST_F(URLRequestInfoTest, GetInterface) { const PPB_URLRequestInfo* request_info = ::ppapi::thunk::GetPPB_URLRequestInfo_1_0_Thunk(); EXPECT_TRUE(request_info); EXPECT_TRUE(request_info->Create); EXPECT_TRUE(request_info->IsURLRequestInfo); EXPECT_TRUE(request_info->SetProperty); EXPECT_TRUE(request_info->AppendDataToBody); EXPECT_TRUE(request_info->AppendFileToBody); } TEST_F(URLRequestInfoTest, AsURLRequestInfo) { EXPECT_EQ(info_, info_->AsPPB_URLRequestInfo_API()); } TEST_F(URLRequestInfoTest, StreamToFile) { SetStringProperty(PP_URLREQUESTPROPERTY_URL, "http://www.google.com"); EXPECT_FALSE(GetDownloadToFile()); EXPECT_TRUE(SetBooleanProperty( PP_URLREQUESTPROPERTY_STREAMTOFILE, true)); EXPECT_TRUE(GetDownloadToFile()); EXPECT_TRUE(SetBooleanProperty( PP_URLREQUESTPROPERTY_STREAMTOFILE, false)); EXPECT_FALSE(GetDownloadToFile()); } TEST_F(URLRequestInfoTest, FollowRedirects) { EXPECT_TRUE(info_->GetData().follow_redirects); EXPECT_TRUE(SetBooleanProperty( PP_URLREQUESTPROPERTY_FOLLOWREDIRECTS, false)); EXPECT_FALSE(info_->GetData().follow_redirects); EXPECT_TRUE(SetBooleanProperty( PP_URLREQUESTPROPERTY_FOLLOWREDIRECTS, true)); EXPECT_TRUE(info_->GetData().follow_redirects); } TEST_F(URLRequestInfoTest, RecordDownloadProgress) { EXPECT_FALSE(info_->GetData().record_download_progress); EXPECT_TRUE(SetBooleanProperty( PP_URLREQUESTPROPERTY_RECORDDOWNLOADPROGRESS, true)); EXPECT_TRUE(info_->GetData().record_download_progress); EXPECT_TRUE(SetBooleanProperty( PP_URLREQUESTPROPERTY_RECORDDOWNLOADPROGRESS, false)); EXPECT_FALSE(info_->GetData().record_download_progress); } TEST_F(URLRequestInfoTest, RecordUploadProgress) { EXPECT_FALSE(info_->GetData().record_upload_progress); EXPECT_TRUE(SetBooleanProperty( PP_URLREQUESTPROPERTY_RECORDUPLOADPROGRESS, true)); EXPECT_TRUE(info_->GetData().record_upload_progress); EXPECT_TRUE(SetBooleanProperty( PP_URLREQUESTPROPERTY_RECORDUPLOADPROGRESS, false)); EXPECT_FALSE(info_->GetData().record_upload_progress); } TEST_F(URLRequestInfoTest, AllowCrossOriginRequests) { EXPECT_FALSE(info_->GetData().allow_cross_origin_requests); EXPECT_TRUE(SetBooleanProperty( PP_URLREQUESTPROPERTY_ALLOWCROSSORIGINREQUESTS, true)); EXPECT_TRUE(info_->GetData().allow_cross_origin_requests); EXPECT_TRUE(SetBooleanProperty( PP_URLREQUESTPROPERTY_ALLOWCROSSORIGINREQUESTS, false)); EXPECT_FALSE(info_->GetData().allow_cross_origin_requests); } TEST_F(URLRequestInfoTest, AllowCredentials) { EXPECT_FALSE(info_->GetData().allow_credentials); EXPECT_TRUE(SetBooleanProperty( PP_URLREQUESTPROPERTY_ALLOWCREDENTIALS, true)); EXPECT_TRUE(info_->GetData().allow_credentials); EXPECT_TRUE(SetBooleanProperty( PP_URLREQUESTPROPERTY_ALLOWCREDENTIALS, false)); EXPECT_FALSE(info_->GetData().allow_credentials); } TEST_F(URLRequestInfoTest, SetURL) { const char* url = "http://www.google.com/"; EXPECT_TRUE(SetStringProperty( PP_URLREQUESTPROPERTY_URL, url)); EXPECT_TRUE(IsExpected(GetURL(), url)); } TEST_F(URLRequestInfoTest, JavascriptURL) { const char* url = "javascript:foo = bar"; EXPECT_FALSE(URLRequestRequiresUniversalAccess(info_->GetData())); SetStringProperty(PP_URLREQUESTPROPERTY_URL, url); EXPECT_TRUE(URLRequestRequiresUniversalAccess(info_->GetData())); } TEST_F(URLRequestInfoTest, SetMethod) { // Test default method is "GET". EXPECT_TRUE(IsExpected(GetMethod(), "GET")); EXPECT_TRUE(SetStringProperty( PP_URLREQUESTPROPERTY_METHOD, "POST")); EXPECT_TRUE(IsExpected(GetMethod(), "POST")); } TEST_F(URLRequestInfoTest, SetHeaders) { // Test default header field. EXPECT_TRUE(IsExpected( GetHeaderValue("foo"), "")); // Test that we can set a header field. EXPECT_TRUE(SetStringProperty( PP_URLREQUESTPROPERTY_HEADERS, "foo: bar")); EXPECT_TRUE(IsExpected( GetHeaderValue("foo"), "bar")); // Test that we can set multiple header fields using \n delimiter. EXPECT_TRUE(SetStringProperty( PP_URLREQUESTPROPERTY_HEADERS, "foo: bar\nbar: baz")); EXPECT_TRUE(IsExpected( GetHeaderValue("foo"), "bar")); EXPECT_TRUE(IsExpected( GetHeaderValue("bar"), "baz")); } // TODO(bbudge) Unit tests for AppendDataToBody, AppendFileToBody. } // namespace ppapi } // namespace webkit