| Index: Source/web/tests/PageSerializerTest.cpp
|
| diff --git a/Source/web/tests/PageSerializerTest.cpp b/Source/web/tests/PageSerializerTest.cpp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..44536240ed9b291bfe7088d47567b8dfcaa62650
|
| --- /dev/null
|
| +++ b/Source/web/tests/PageSerializerTest.cpp
|
| @@ -0,0 +1,182 @@
|
| +/*
|
| + * Copyright (c) 2013, Opera Software ASA. All rights reserved.
|
| + *
|
| + * Redistribution and use in source and binary forms, with or without
|
| + * modification, are permitted provided that the following conditions
|
| + * are met:
|
| + *
|
| + * 1. Redistributions of source code must retain the above copyright
|
| + * notice, this list of conditions and the following disclaimer.
|
| + * 2. Redistributions in binary form must reproduce the above copyright
|
| + * notice, this list of conditions and the following disclaimer in the
|
| + * documentation and/or other materials provided with the distribution.
|
| + * 3. Neither the name of Opera Software ASA nor the names of its
|
| + * contributors may be used to endorse or promote products derived
|
| + * from this software without specific prior written permission.
|
| + *
|
| + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
| + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
| + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
| + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
| + * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
| + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
| + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
| + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
| + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
| + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
| + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
| + * OF THE POSSIBILITY OF SUCH DAMAGE.
|
| + */
|
| +
|
| +#include "config.h"
|
| +
|
| +#include "FrameTestHelpers.h"
|
| +#include "URLTestHelpers.h"
|
| +#include "WebFrameClient.h"
|
| +#include "WebFrameImpl.h"
|
| +#include "WebSettings.h"
|
| +#include "WebViewImpl.h"
|
| +#include <gtest/gtest.h>
|
| +#include "core/page/Page.h"
|
| +#include "core/page/PageSerializer.h"
|
| +#include "core/platform/SerializedResource.h"
|
| +#include "public/platform/Platform.h"
|
| +#include "public/platform/WebString.h"
|
| +#include "public/platform/WebThread.h"
|
| +#include "public/platform/WebURL.h"
|
| +#include "public/platform/WebURLRequest.h"
|
| +#include "public/platform/WebURLResponse.h"
|
| +#include "public/platform/WebUnitTestSupport.h"
|
| +#include "wtf/Vector.h"
|
| +
|
| +using namespace WebCore;
|
| +using namespace WebKit;
|
| +using WebKit::FrameTestHelpers::runPendingTasks;
|
| +using WebKit::URLTestHelpers::toKURL;
|
| +using WebKit::URLTestHelpers::registerMockedURLLoad;
|
| +
|
| +namespace {
|
| +
|
| +class TestWebFrameClient : public WebFrameClient {
|
| +public:
|
| + virtual ~TestWebFrameClient() { }
|
| +};
|
| +
|
| +class PageSerializerTest : public testing::Test {
|
| +public:
|
| + PageSerializerTest()
|
| + : m_folder(WebString::fromUTF8("pageserializer/"))
|
| + , m_baseUrl(toKURL("http://www.test.com"))
|
| + {
|
| + }
|
| +
|
| +protected:
|
| + virtual void SetUp()
|
| + {
|
| + // Create and initialize the WebView.
|
| + m_webViewImpl = static_cast<WebViewImpl*>(WebView::create(0));
|
| +
|
| + // We want the images to load and JavaScript to be on.
|
| + WebSettings* settings = m_webViewImpl->settings();
|
| + settings->setImagesEnabled(true);
|
| + settings->setLoadsImagesAutomatically(true);
|
| + settings->setJavaScriptEnabled(true);
|
| +
|
| + m_webViewImpl->initializeMainFrame(&m_webFrameClient);
|
| + }
|
| +
|
| + virtual void TearDown()
|
| + {
|
| + Platform::current()->unitTestSupport()->unregisterAllMockedURLs();
|
| + m_webViewImpl->close();
|
| + m_webViewImpl = 0;
|
| + }
|
| +
|
| + void setBaseUrl(const char* url)
|
| + {
|
| + m_baseUrl = toKURL(url);
|
| + }
|
| +
|
| + void setBaseFolder(const char* folder)
|
| + {
|
| + m_folder = WebString::fromUTF8(folder);
|
| + }
|
| +
|
| + void registerURL(const char* file, const char* mimeType)
|
| + {
|
| + registerMockedURLLoad(KURL(m_baseUrl, file), WebString::fromUTF8(file), m_folder, WebString::fromUTF8(mimeType));
|
| + }
|
| +
|
| + void registerErrorURL(const char* file, int statusCode)
|
| + {
|
| + WebURLError error;
|
| + error.reason = 0xdead + statusCode;
|
| + error.domain = "PageSerializerTest";
|
| +
|
| + WebURLResponse response;
|
| + response.initialize();
|
| + response.setMIMEType("text/html");
|
| + response.setHTTPStatusCode(statusCode);
|
| +
|
| + Platform::current()->unitTestSupport()->registerMockedErrorURL(KURL(m_baseUrl, file), response, error);
|
| + }
|
| +
|
| + void serialize(const char* url)
|
| + {
|
| + WebURLRequest urlRequest;
|
| + urlRequest.initialize();
|
| + urlRequest.setURL(KURL(m_baseUrl, url));
|
| + m_webViewImpl->mainFrame()->loadRequest(urlRequest);
|
| + // Make sure any pending request get served.
|
| + Platform::current()->unitTestSupport()->serveAsynchronousMockedRequests();
|
| + // Some requests get delayed, run the timer.
|
| + runPendingTasks();
|
| + // Server the delayed resources.
|
| + Platform::current()->unitTestSupport()->serveAsynchronousMockedRequests();
|
| +
|
| + PageSerializer serializer(&m_resources);
|
| + serializer.serialize(m_webViewImpl->mainFrameImpl()->frame()->page());
|
| + }
|
| +
|
| + Vector<SerializedResource>& getResources()
|
| + {
|
| + return m_resources;
|
| + }
|
| +
|
| + bool isSerialized(const char* url, const char* mimeType)
|
| + {
|
| + KURL kURL = KURL(m_baseUrl, url);
|
| + WTF::String mime(mimeType);
|
| + for (size_t i = 0; i < m_resources.size(); ++i) {
|
| + const SerializedResource& resource = m_resources[i];
|
| + if (resource.url == kURL && !resource.data->isEmpty() && equalIgnoringCase(resource.mimeType, mime))
|
| + return true;
|
| + }
|
| + return false;
|
| + }
|
| +
|
| + WebViewImpl* m_webViewImpl;
|
| +
|
| +private:
|
| + TestWebFrameClient m_webFrameClient;
|
| + WebString m_folder;
|
| + KURL m_baseUrl;
|
| + Vector<SerializedResource> m_resources;
|
| +};
|
| +
|
| +
|
| +TEST_F(PageSerializerTest, InputImage)
|
| +{
|
| + setBaseFolder("pageserializer/input-image/");
|
| +
|
| + registerURL("input-image.html", "text/html");
|
| + registerURL("button.png", "image/png");
|
| + registerErrorURL("non-existing-button.png", 404);
|
| +
|
| + serialize("input-image.html");
|
| +
|
| + EXPECT_TRUE(isSerialized("button.png", "image/png"));
|
| + EXPECT_FALSE(isSerialized("non-existing-button.png", "image/png"));
|
| +}
|
| +
|
| +}
|
|
|