| /* |
| * Copyright (C) 2015 Apple Inc. 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. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS 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 APPLE INC. OR ITS 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. |
| */ |
| |
| #import "config.h" |
| #import "TestController.h" |
| |
| #import "CrashReporterInfo.h" |
| #import "PlatformWebView.h" |
| #import "TestInvocation.h" |
| #import <Foundation/Foundation.h> |
| #import <WebKit/WKContextConfigurationRef.h> |
| #import <WebKit/WKPreferencesRefPrivate.h> |
| #import <WebKit/WKProcessPoolPrivate.h> |
| #import <WebKit/WKStringCF.h> |
| #import <WebKit/WKUserContentControllerPrivate.h> |
| #import <WebKit/WKWebView.h> |
| #import <WebKit/WKWebViewConfiguration.h> |
| #import <WebKit/WKWebViewConfigurationPrivate.h> |
| #import <WebKit/_WKProcessPoolConfiguration.h> |
| #import <WebKit/_WKUserContentExtensionStore.h> |
| #import <WebKit/_WKUserContentExtensionStorePrivate.h> |
| #import <wtf/MainThread.h> |
| |
| namespace WTR { |
| |
| static WKWebViewConfiguration *globalWebViewConfiguration; |
| |
| void initializeWebViewConfiguration(const char* libraryPath, WKStringRef injectedBundlePath, WKContextRef context, WKContextConfigurationRef contextConfiguration) |
| { |
| #if WK_API_ENABLED |
| ASSERT(!globalWebViewConfiguration); |
| globalWebViewConfiguration = [[WKWebViewConfiguration alloc] init]; |
| |
| globalWebViewConfiguration.processPool = [[WKProcessPool alloc] _initWithConfiguration:(_WKProcessPoolConfiguration *)contextConfiguration]; |
| globalWebViewConfiguration.websiteDataStore = (WKWebsiteDataStore *)WKContextGetWebsiteDataStore(context); |
| |
| #if TARGET_OS_IPHONE |
| globalWebViewConfiguration.allowsInlineMediaPlayback = YES; |
| globalWebViewConfiguration._inlineMediaPlaybackRequiresPlaysInlineAttribute = NO; |
| globalWebViewConfiguration._mediaDataLoadsAutomatically = YES; |
| globalWebViewConfiguration.requiresUserActionForMediaPlayback = NO; |
| #endif |
| #endif |
| } |
| |
| WKPreferencesRef TestController::platformPreferences() |
| { |
| #if WK_API_ENABLED |
| return (WKPreferencesRef)globalWebViewConfiguration.preferences; |
| #else |
| return nullptr; |
| #endif |
| } |
| |
| void TestController::platformCreateWebView(WKPageConfigurationRef, const ViewOptions& options) |
| { |
| m_mainWebView = std::make_unique<PlatformWebView>(globalWebViewConfiguration, options); |
| } |
| |
| PlatformWebView* TestController::platformCreateOtherPage(PlatformWebView* parentView, WKPageConfigurationRef, const ViewOptions& options) |
| { |
| #if WK_API_ENABLED |
| WKWebViewConfiguration *newConfiguration = [[globalWebViewConfiguration copy] autorelease]; |
| newConfiguration._relatedWebView = static_cast<WKWebView*>(parentView->platformView()); |
| return new PlatformWebView(newConfiguration, options); |
| #else |
| return nullptr; |
| #endif |
| } |
| |
| WKContextRef TestController::platformAdjustContext(WKContextRef context, WKContextConfigurationRef contextConfiguration) |
| { |
| #if WK_API_ENABLED |
| initializeWebViewConfiguration(libraryPathForTesting(), injectedBundlePath(), context, contextConfiguration); |
| return (WKContextRef)globalWebViewConfiguration.processPool; |
| #else |
| return nullptr; |
| #endif |
| } |
| |
| void TestController::platformRunUntil(bool& done, double timeout) |
| { |
| NSDate *endDate = (timeout > 0) ? [NSDate dateWithTimeIntervalSinceNow:timeout] : [NSDate distantFuture]; |
| |
| while (!done && [endDate compare:[NSDate date]] == NSOrderedDescending) |
| [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:endDate]; |
| } |
| |
| void TestController::platformResetStateToConsistentValues() |
| { |
| #if WK_API_ENABLED |
| __block bool doneRemoving = false; |
| [[_WKUserContentExtensionStore defaultStore] removeContentExtensionForIdentifier:@"TestContentExtensions" completionHandler:^(NSError *error) { |
| doneRemoving = true; |
| }]; |
| platformRunUntil(doneRemoving, 0); |
| [[_WKUserContentExtensionStore defaultStore] _removeAllContentExtensions]; |
| |
| if (PlatformWebView* webView = mainWebView()) |
| [webView->platformView().configuration.userContentController _removeAllUserContentFilters]; |
| #endif |
| } |
| |
| void TestController::platformWillRunTest(const TestInvocation& testInvocation) |
| { |
| setCrashReportApplicationSpecificInformationToURL(testInvocation.url()); |
| } |
| |
| } // namespace WTR |