| 1 | /* |
| 2 | * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions |
| 6 | * are met: |
| 7 | * 1. Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * 2. Redistributions in binary form must reproduce the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer in the |
| 11 | * documentation and/or other materials provided with the distribution. |
| 12 | * |
| 13 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| 14 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| 15 | * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| 17 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 18 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 19 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 20 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 21 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 22 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 23 | * THE POSSIBILITY OF SUCH DAMAGE. |
| 24 | */ |
| 25 | |
| 26 | #include "config.h" |
| 27 | |
| 28 | #if WK_HAVE_C_SPI |
| 29 | |
| 30 | #include "JavaScriptTest.h" |
| 31 | #include "PlatformUtilities.h" |
| 32 | #include "PlatformWebView.h" |
| 33 | #include "Test.h" |
| 34 | #include <WebKit/WKSessionStateRef.h> |
| 35 | |
| 36 | namespace TestWebKitAPI { |
| 37 | |
| 38 | static bool didFinishLoad; |
| 39 | |
| 40 | static void didFinishNavigation(WKPageRef, WKNavigationRef, WKTypeRef, const void*) |
| 41 | { |
| 42 | didFinishLoad = true; |
| 43 | } |
| 44 | |
| 45 | static void setPageLoaderClient(WKPageRef page) |
| 46 | { |
| 47 | WKPageNavigationClientV0 loaderClient; |
| 48 | memset(&loaderClient, 0, sizeof(loaderClient)); |
| 49 | |
| 50 | loaderClient.base.version = 0; |
| 51 | loaderClient.didFinishNavigation = didFinishNavigation; |
| 52 | |
| 53 | WKPageSetPageNavigationClient(page, &loaderClient.base); |
| 54 | } |
| 55 | |
| 56 | static WKRetainPtr<WKDataRef> createSessionStateDataContainingFormData(WKContextRef context) |
| 57 | { |
| 58 | PlatformWebView webView(context); |
| 59 | setPageLoaderClient(webView.page()); |
| 60 | |
| 61 | WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("simple-form" , "html" )).get()); |
| 62 | Util::run(&didFinishLoad); |
| 63 | didFinishLoad = false; |
| 64 | |
| 65 | EXPECT_JS_EQ(webView.page(), "submitForm()" , "undefined" ); |
| 66 | Util::run(&didFinishLoad); |
| 67 | didFinishLoad = false; |
| 68 | |
| 69 | auto sessionState = adoptWK(static_cast<WKSessionStateRef>(WKPageCopySessionState(webView.page(), reinterpret_cast<void*>(1), nullptr))); |
| 70 | return adoptWK(WKSessionStateCopyData(sessionState.get())); |
| 71 | } |
| 72 | |
| 73 | TEST(WebKit, RestoreSessionStateContainingFormData) |
| 74 | { |
| 75 | WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreateWithConfiguration(nullptr)); |
| 76 | |
| 77 | // FIXME: Once <rdar://problem/8708435> is fixed, we can move the creation of this |
| 78 | // PlatformWebView after the call to createSessionStaetContainingFormData. Until then, it must |
| 79 | // remain here to avoid a race condition between the UI and web processes. |
| 80 | PlatformWebView webView(context.get()); |
| 81 | setPageLoaderClient(webView.page()); |
| 82 | |
| 83 | WKRetainPtr<WKDataRef> data = createSessionStateDataContainingFormData(context.get()); |
| 84 | EXPECT_NOT_NULL(data); |
| 85 | |
| 86 | auto sessionState = adoptWK(WKSessionStateCreateFromData(data.get())); |
| 87 | WKPageRestoreFromSessionState(webView.page(), sessionState.get()); |
| 88 | |
| 89 | Util::run(&didFinishLoad); |
| 90 | |
| 91 | EXPECT_TRUE(WKPageCanGoBack(webView.page())); |
| 92 | } |
| 93 | |
| 94 | } // namespace TestWebKitAPI |
| 95 | |
| 96 | #endif |
| 97 | |