| /* |
| * Copyright (C) 2018 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 "Utilities.h" |
| #import <WebKit/WKFoundation.h> |
| #import <WebKit/WKProcessPoolPrivate.h> |
| #import <WebKit/_WKProcessPoolConfiguration.h> |
| #import <wtf/RetainPtr.h> |
| |
| TEST(WKProcessPoolConfiguration, Copy) |
| { |
| auto configuration = adoptNS([[_WKProcessPoolConfiguration alloc] init]); |
| |
| #if PLATFORM(IOS_FAMILY) |
| NSSet<Class> *testSet = [NSSet setWithObjects:[UIColor class], nil]; |
| #else |
| NSSet<Class> *testSet = [NSSet setWithObjects:[NSColor class], nil]; |
| #endif |
| |
| [configuration setInjectedBundleURL:[NSURL fileURLWithPath:@"/path/to/injected.wkbundle"]]; |
| [configuration setCustomClassesForParameterCoder:testSet]; |
| [configuration setCustomWebContentServiceBundleIdentifier:@"org.webkit.WebContent.custom"]; |
| [configuration setIgnoreSynchronousMessagingTimeoutsForTesting:YES]; |
| [configuration setAttrStyleEnabled:YES]; |
| [configuration setAdditionalReadAccessAllowedURLs:@[ [NSURL fileURLWithPath:@"/path/to/allow/read/access/"] ]]; |
| [configuration setDiskCacheSizeOverride:42000]; |
| [configuration setCachePartitionedURLSchemes:@[ @"ssh", @"vnc" ]]; |
| [configuration setAlwaysRevalidatedURLSchemes:@[ @"afp", @"smb" ]]; |
| [configuration setShouldCaptureAudioInUIProcess:YES]; |
| #if PLATFORM(IOS_FAMILY) |
| [configuration setCTDataConnectionServiceType:@"best"]; |
| [configuration setAlwaysRunsAtBackgroundPriority:YES]; |
| [configuration setShouldTakeUIBackgroundAssertion:YES]; |
| #endif |
| [configuration setPresentingApplicationPID:1000]; |
| [configuration setProcessSwapsOnNavigation:YES]; |
| [configuration setAlwaysKeepAndReuseSwappedProcesses:YES]; |
| [configuration setProcessSwapsOnWindowOpenWithOpener:YES]; |
| [configuration setPrewarmsProcessesAutomatically:YES]; |
| [configuration setPageCacheEnabled:YES]; |
| [configuration setSuppressesConnectionTerminationOnSystemChange:YES]; |
| |
| auto copy = adoptNS([configuration copy]); |
| |
| EXPECT_TRUE([[configuration injectedBundleURL] isEqual:[copy injectedBundleURL]]); |
| EXPECT_TRUE([[copy customClassesForParameterCoder] isEqualToSet:testSet]); |
| EXPECT_TRUE([[configuration customWebContentServiceBundleIdentifier] isEqual:[copy customWebContentServiceBundleIdentifier]]); |
| EXPECT_EQ([configuration ignoreSynchronousMessagingTimeoutsForTesting], [copy ignoreSynchronousMessagingTimeoutsForTesting]); |
| EXPECT_EQ([configuration attrStyleEnabled], [copy attrStyleEnabled]); |
| EXPECT_TRUE([[configuration additionalReadAccessAllowedURLs] isEqual:[copy additionalReadAccessAllowedURLs]]); |
| EXPECT_EQ([configuration diskCacheSizeOverride], [copy diskCacheSizeOverride]); |
| EXPECT_TRUE([[configuration cachePartitionedURLSchemes] isEqual:[copy cachePartitionedURLSchemes]]); |
| EXPECT_TRUE([[configuration alwaysRevalidatedURLSchemes] isEqual:[copy alwaysRevalidatedURLSchemes]]); |
| EXPECT_EQ([configuration shouldCaptureAudioInUIProcess], [copy shouldCaptureAudioInUIProcess]); |
| #if PLATFORM(IOS_FAMILY) |
| EXPECT_TRUE([[configuration CTDataConnectionServiceType] isEqual:[copy CTDataConnectionServiceType]]); |
| EXPECT_EQ([configuration alwaysRunsAtBackgroundPriority], [copy alwaysRunsAtBackgroundPriority]); |
| EXPECT_EQ([configuration shouldTakeUIBackgroundAssertion], [copy shouldTakeUIBackgroundAssertion]); |
| #endif |
| EXPECT_EQ([configuration presentingApplicationPID], [copy presentingApplicationPID]); |
| EXPECT_EQ([configuration processSwapsOnNavigation], [copy processSwapsOnNavigation]); |
| EXPECT_EQ([configuration alwaysKeepAndReuseSwappedProcesses], [copy alwaysKeepAndReuseSwappedProcesses]); |
| EXPECT_EQ([configuration processSwapsOnWindowOpenWithOpener], [copy processSwapsOnWindowOpenWithOpener]); |
| EXPECT_EQ([configuration prewarmsProcessesAutomatically], [copy prewarmsProcessesAutomatically]); |
| EXPECT_EQ([configuration pageCacheEnabled], [copy pageCacheEnabled]); |
| EXPECT_EQ([configuration suppressesConnectionTerminationOnSystemChange], [copy suppressesConnectionTerminationOnSystemChange]); |
| } |
| |
| TEST(WKProcessPool, JavaScriptConfiguration) |
| { |
| NSFileManager *fileManager = [NSFileManager defaultManager]; |
| NSURL *tempDir = [NSURL fileURLWithPath:[NSTemporaryDirectory() stringByAppendingPathComponent:@"CustomPathsTest"] isDirectory:YES]; |
| NSError *error = nil; |
| BOOL success = [fileManager createDirectoryAtURL:tempDir withIntermediateDirectories:YES attributes:nil error:&error]; |
| EXPECT_TRUE(success); |
| EXPECT_FALSE(error); |
| |
| NSData *contents = [@"" |
| "processName =~ /WebContent/ {\n" |
| "logFile = \"Log.txt\"\n" |
| "jscOptions {\n" |
| "dumpOptions = 1\n" |
| "dumpDFGDisassembly = true\n" |
| "}\n" |
| "}" |
| "" dataUsingEncoding:NSUTF8StringEncoding]; |
| BOOL result = [contents writeToURL:[tempDir URLByAppendingPathComponent:@"JSC.config"] atomically:YES]; |
| EXPECT_TRUE(result); |
| |
| auto configuration = adoptNS([[WKWebViewConfiguration alloc] init]); |
| configuration.get().processPool._javaScriptConfigurationDirectory = tempDir; |
| auto webView = adoptNS([[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100) configuration:configuration.get()]); |
| [webView loadHTMLString:@"<html>hello</html>" baseURL:[NSURL URLWithString:@"https://webkit.org/"]]; |
| |
| NSString *path = [tempDir URLByAppendingPathComponent:@"Log.txt"].path; |
| while (![fileManager fileExistsAtPath:path]) |
| TestWebKitAPI::Util::spinRunLoop(); |
| [fileManager removeItemAtPath:tempDir.path error:&error]; |
| EXPECT_FALSE(error); |
| } |