forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebKitAgnosticTest.mm
More file actions
168 lines (139 loc) · 5.18 KB
/
WebKitAgnosticTest.mm
File metadata and controls
168 lines (139 loc) · 5.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*
* Copyright (C) 2011 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 "WebKitAgnosticTest.h"
#import <WebKit/WKURLCF.h>
#import <WebKit/WKViewPrivate.h>
#import <WebKit/WebViewPrivate.h>
#import <wtf/RetainPtr.h>
@interface FrameLoadDelegate : NSObject <WebFrameLoadDelegate> {
bool* _didFinishLoad;
}
- (id)initWithDidFinishLoadBoolean:(bool*)didFinishLoad;
@end
@implementation FrameLoadDelegate
- (id)initWithDidFinishLoadBoolean:(bool*)didFinishLoad
{
self = [super init];
if (!self)
return nil;
_didFinishLoad = didFinishLoad;
return self;
}
- (void)webView:(WebView *)webView didFinishLoadForFrame:(WebFrame *)webFrame
{
*_didFinishLoad = true;
}
@end
namespace TestWebKitAPI {
static void didFinishNavigation(WKPageRef, WKNavigationRef, WKTypeRef, const void* context)
{
*static_cast<bool*>(const_cast<void*>(context)) = true;
}
static void setPageLoaderClient(WKPageRef page, bool* didFinishLoad)
{
WKPageNavigationClientV0 loaderClient;
memset(&loaderClient, 0, sizeof(loaderClient));
loaderClient.base.version = 0;
loaderClient.base.clientInfo = didFinishLoad;
loaderClient.didFinishNavigation = didFinishNavigation;
WKPageSetPageNavigationClient(page, &loaderClient.base);
}
WebKitAgnosticTest::WebKitAgnosticTest()
: viewFrame(NSMakeRect(0, 0, 800, 600))
, didFinishLoad(false)
{
}
void WebKitAgnosticTest::runWebKit1Test()
{
RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:viewFrame]);
#if !TARGET_OS_IPHONE
// The tests can be run concurrently. In that case, window can occlude each other and change visibility results.
// Occlusion problems also happen from other windows unrelated to WebKit testing.
[webView setWindowOcclusionDetectionEnabled:NO];
#endif
RetainPtr<FrameLoadDelegate> delegate = adoptNS([[FrameLoadDelegate alloc] initWithDidFinishLoadBoolean:&didFinishLoad]);
[webView.get() setFrameLoadDelegate:delegate.get()];
initializeView(webView.get());
loadURL(webView.get(), url());
waitForLoadToFinish();
didLoadURL(webView.get());
teardownView(webView.get());
}
void WebKitAgnosticTest::runWebKit2Test()
{
WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreateWithConfiguration(nullptr));
WKRetainPtr<WKPageGroupRef> pageGroup = adoptWK(WKPageGroupCreateWithIdentifier(Util::toWK("WebKitAgnosticTest").get()));
RetainPtr<WKView> view = adoptNS([[WKView alloc] initWithFrame:viewFrame contextRef:context.get() pageGroupRef:pageGroup.get()]);
setPageLoaderClient([view.get() pageRef], &didFinishLoad);
initializeView(view.get());
loadURL(view.get(), url());
waitForLoadToFinish();
didLoadURL(view.get());
teardownView(view.get());
}
void WebKitAgnosticTest::loadURL(WebView *webView, NSURL *url)
{
EXPECT_FALSE(didFinishLoad);
[[webView mainFrame] loadRequest:[NSURLRequest requestWithURL:url]];
}
void WebKitAgnosticTest::loadURL(WKView *view, NSURL *url)
{
EXPECT_FALSE(didFinishLoad);
WKPageLoadURL([view pageRef], adoptWK(WKURLCreateWithCFURL((__bridge CFURLRef)url)).get());
}
void WebKitAgnosticTest::goBack(WebView *webView)
{
EXPECT_FALSE(didFinishLoad);
[webView goBack];
}
void WebKitAgnosticTest::goBack(WKView *view)
{
EXPECT_FALSE(didFinishLoad);
WKPageGoBack([view pageRef]);
}
void WebKitAgnosticTest::waitForLoadToFinish()
{
Util::run(&didFinishLoad);
didFinishLoad = false;
}
void WebKitAgnosticTest::waitForNextPresentationUpdate(WebView *)
{
// FIXME: This isn't currently required anywhere. Just dispatch to the next runloop for now.
__block bool done = false;
dispatch_async(dispatch_get_main_queue(), ^() {
done = true;
});
Util::run(&done);
}
void WebKitAgnosticTest::waitForNextPresentationUpdate(WKView *view)
{
__block bool done = false;
[view _doAfterNextPresentationUpdate:^() {
done = true;
}];
Util::run(&done);
}
} // namespace TestWebKitAPI