forked from XWebView/XWebView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjectPlugin.swift
More file actions
140 lines (132 loc) · 5.6 KB
/
Copy pathObjectPlugin.swift
File metadata and controls
140 lines (132 loc) · 5.6 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
/*
Copyright 2015 XWebView
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import Foundation
import XCTest
import XWebView
class ObjectPlugin : XWVTestCase {
class Plugin : NSObject {
dynamic var property = 123
private var expectation: XCTestExpectation?;
func method() {
expectation?.fulfill()
}
func method(argument argument: AnyObject?) {
if argument as? String == "Yes" {
expectation?.fulfill()
}
}
func method(Integer Integer: Int) {
if Integer == 789 {
expectation?.fulfill()
}
}
func method(callback callback: XWVScriptObject) {
callback.call(arguments: nil, resultHandler: nil)
}
func method(promiseObject promiseObject: XWVScriptObject) {
promiseObject.callMethod("resolve", withArguments: nil, resultHandler: nil)
}
func windowObject() {
if let test: AnyObject = scriptObject?.windowObject["test"] {
if (test as? NSNumber)?.integerValue == 234 {
expectation?.fulfill()
}
}
}
init(expectation: XCTestExpectation?) {
self.expectation = expectation
}
}
let namespace = "xwvtest"
func testFetchProperty() {
let desc = "fetchProperty"
let script = "if (\(namespace).property == 123) fulfill('\(desc)');"
_ = expectationWithDescription(desc)
loadPlugin(Plugin(expectation: nil), namespace: namespace, script: script)
waitForExpectationsWithTimeout(2, handler: nil)
}
func testUpdateProperty() {
let expectation = expectationWithDescription("updateProperty")
let object = Plugin(expectation: nil)
loadPlugin(object, namespace: namespace, script: "\(namespace).property = 321") {
$0.evaluateJavaScript("\(self.namespace).property") {
(obj: AnyObject?, err: NSError?)->Void in
if (obj as? NSNumber)?.integerValue == 321 && object.property == 321 {
expectation.fulfill()
}
}
}
waitForExpectationsWithTimeout(2, handler: nil)
}
func testSyncProperty() {
let expectation = expectationWithDescription("syncProperty")
let object = Plugin(expectation: nil)
loadPlugin(object, namespace: namespace, script: "") {
object.property = 321
$0.evaluateJavaScript("\(self.namespace).property") {
(obj: AnyObject?, err: NSError?)->Void in
if (obj as? NSNumber)?.integerValue == 321 {
expectation.fulfill()
}
}
}
waitForExpectationsWithTimeout(2, handler: nil)
}
func testCallMethod() {
let expectation = expectationWithDescription("callMethod")
loadPlugin(Plugin(expectation: expectation), namespace: namespace, script: "\(namespace).method()")
waitForExpectationsWithTimeout(2, handler: nil)
}
func testCallMethodWithArgument() {
let expectation = expectationWithDescription("callMethodWithArgument")
loadPlugin(Plugin(expectation: expectation), namespace: namespace, script: "\(namespace).methodWithArgument('Yes')")
waitForExpectationsWithTimeout(2, handler: nil)
}
func testCallMethodWithInteger() {
let expectation = expectationWithDescription("callMethodWithInteger")
loadPlugin(Plugin(expectation: expectation), namespace: namespace, script: "\(namespace).methodWithInteger(789)")
waitForExpectationsWithTimeout(2, handler: nil)
}
func testCallMethodWithCallback() {
let desc = "callMethodWithCallback"
let script = "\(namespace).methodWithCallback(function(){fulfill('\(desc)');})"
_ = expectationWithDescription(desc)
loadPlugin(Plugin(expectation: nil), namespace: namespace, script: script)
waitForExpectationsWithTimeout(3, handler: nil)
}
func testCallMethodWithPromise() {
let desc = "callMethodWithPromise"
let script = "\(namespace).methodWithPromiseObject().then(function(){fulfill('\(desc)');})"
_ = expectationWithDescription(desc)
loadPlugin(Plugin(expectation: nil), namespace: namespace, script: script)
waitForExpectationsWithTimeout(3, handler: nil)
}
func testScriptObject() {
let desc = "scriptObject"
let expectation = expectationWithDescription(desc)
let plugin = Plugin(expectation: expectation)
loadPlugin(plugin as NSObject, namespace: namespace, script: "") {
(webView)->Void in
plugin.scriptObject?.callMethod("method", withArguments: nil)
return
}
waitForExpectationsWithTimeout(2, handler: nil)
}
func testWindowObject() {
let desc = "windowObject"
let expectation = expectationWithDescription(desc)
let plugin = Plugin(expectation: expectation)
loadPlugin(plugin as NSObject, namespace: namespace, script: "window.test=234;\(namespace).windowObject()")
waitForExpectationsWithTimeout(2, handler: nil)
}
}