1/*
2 * Copyright (C) 2010 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#include "PlatformUtilities.h"
28
29#include <WebKit/WKContextConfigurationRef.h>
30#include <wtf/StdLibExtras.h>
31
32namespace TestWebKitAPI {
33namespace Util {
34
35#if WK_HAVE_C_SPI
36
37WKContextRef createContextWithInjectedBundle()
38{
39 WKRetainPtr<WKStringRef> injectedBundlePath = adoptWK(createInjectedBundlePath());
40 auto configuration = adoptWK(WKContextConfigurationCreate());
41 WKContextConfigurationSetInjectedBundlePath(configuration.get(), injectedBundlePath.get());
42 return WKContextCreateWithConfiguration(configuration.get());
43}
44
45WKDictionaryRef createInitializationDictionaryForInjectedBundleTest(const std::string& testName, WKTypeRef userData)
46{
47 WKMutableDictionaryRef initializationDictionary = WKMutableDictionaryCreate();
48
49 WKRetainPtr<WKStringRef> testNameKey = adoptWK(WKStringCreateWithUTF8CString("TestName"));
50 WKRetainPtr<WKStringRef> testNameString = adoptWK(WKStringCreateWithUTF8CString(testName.c_str()));
51 WKDictionarySetItem(initializationDictionary, testNameKey.get(), testNameString.get());
52
53 WKRetainPtr<WKStringRef> userDataKey = adoptWK(WKStringCreateWithUTF8CString("UserData"));
54 WKDictionarySetItem(initializationDictionary, userDataKey.get(), userData);
55
56 return initializationDictionary;
57}
58
59WKContextRef createContextForInjectedBundleTest(const std::string& testName, WKTypeRef userData)
60{
61 WKContextRef context = createContextWithInjectedBundle();
62
63 WKRetainPtr<WKDictionaryRef> initializationDictionary = adoptWK(createInitializationDictionaryForInjectedBundleTest(testName, userData));
64 WKContextSetInitializationUserDataForInjectedBundle(context, initializationDictionary.get());
65
66 return context;
67}
68
69std::string toSTD(WKStringRef string)
70{
71 size_t bufferSize = WKStringGetMaximumUTF8CStringSize(string);
72 auto buffer = std::make_unique<char[]>(bufferSize);
73 size_t stringLength = WKStringGetUTF8CString(string, buffer.get(), bufferSize);
74 return std::string(buffer.get(), stringLength - 1);
75}
76
77std::string toSTD(WKRetainPtr<WKStringRef> string)
78{
79 return toSTD(string.get());
80}
81
82WKRetainPtr<WKStringRef> toWK(const char* utf8String)
83{
84 return adoptWK(WKStringCreateWithUTF8CString(utf8String));
85}
86
87#endif // WK_HAVE_C_SPI
88
89std::string toSTD(const char* string)
90{
91 return std::string(string);
92}
93
94} // namespace Util
95} // namespace TestWebKitAPI
96