| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (C) 2013 Adenilson Cavalcanti <cavalcantii@gmail.com> | |
| 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 #include "PlatformUtilities.h" | |
| 28 #include "PlatformWebView.h" | |
| 29 #include "Test.h" | |
| 30 #include <WebKit2/WKRetainPtr.h> | |
| 31 | |
| 32 namespace TestWebKitAPI { | |
| 33 | |
| 34 static bool loadBeforeCrash = false; | |
| 35 static bool loadAfterCrash = false; | |
| 36 | |
| 37 static void didFinishLoad(WKPageRef page, WKFrameRef frame, WKTypeRef userData,
const void* clientInfo) | |
| 38 { | |
| 39 // First load before WebProcess was terminated. | |
| 40 if (!loadBeforeCrash) { | |
| 41 loadBeforeCrash = true; | |
| 42 return; | |
| 43 } | |
| 44 | |
| 45 // Next load after WebProcess was terminated (hopefully | |
| 46 // it will be correctly re-spawned). | |
| 47 EXPECT_EQ(static_cast<uint32_t>(kWKFrameLoadStateFinished), WKFrameGetFrameL
oadState(frame)); | |
| 48 EXPECT_FALSE(loadAfterCrash); | |
| 49 | |
| 50 // Set it, otherwise the loop will not end. | |
| 51 loadAfterCrash = true; | |
| 52 } | |
| 53 | |
| 54 static void didCrash(WKPageRef page, const void*) | |
| 55 { | |
| 56 // Test if first load actually worked. | |
| 57 EXPECT_TRUE(loadBeforeCrash); | |
| 58 | |
| 59 // Reload should re-spawn webprocess. | |
| 60 WKPageReload(page); | |
| 61 } | |
| 62 | |
| 63 TEST(WebKit2, ReloadPageAfterCrash) | |
| 64 { | |
| 65 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate()); | |
| 66 PlatformWebView webView(context.get()); | |
| 67 | |
| 68 WKPageLoaderClient loaderClient; | |
| 69 memset(&loaderClient, 0, sizeof(loaderClient)); | |
| 70 loaderClient.didFinishLoadForFrame = didFinishLoad; | |
| 71 loaderClient.processDidCrash = didCrash; | |
| 72 WKPageSetPageLoaderClient(webView.page(), &loaderClient); | |
| 73 | |
| 74 WKRetainPtr<WKURLRef> url = adoptWK(WKURLCreateWithUTF8CString("about:blank"
)); | |
| 75 // Load a blank page and next kills WebProcess. | |
| 76 WKPageLoadURL(webView.page(), url.get()); | |
| 77 Util::run(&loadBeforeCrash); | |
| 78 WKPageTerminate(webView.page()); | |
| 79 | |
| 80 // Let's try load a page and see what happens. | |
| 81 WKPageLoadURL(webView.page(), url.get()); | |
| 82 Util::run(&loadAfterCrash); | |
| 83 } | |
| 84 | |
| 85 } // namespace TestWebKitAPI | |
| OLD | NEW |