-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e76b31c
commit 04bc476
Showing
4 changed files
with
243 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
// | ||
// ArrayBufferTest.swift | ||
// | ||
// The MIT License | ||
// Copyright (c) 2015 - 2020 Susan Cheng. All rights reserved. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
// | ||
|
||
import SwiftJS | ||
import XCTest | ||
|
||
@available(macOS 10.12, iOS 10.0, tvOS 10.0, *) | ||
class ArrayBufferTest: XCTestCase { | ||
|
||
func testArrayBuffer() { | ||
|
||
let context = JSContext() | ||
|
||
let bytes: [UInt8] = [1, 2, 3, 4, 5, 6, 7, 8] | ||
context.global["buffer"] = JSObject(newArrayBufferWithBytes: bytes, in: context) | ||
|
||
XCTAssertTrue(context.global["buffer"].isArrayBuffer) | ||
XCTAssertEqual(context.global["buffer"].byteLength, 8) | ||
|
||
} | ||
|
||
func testDataView() { | ||
|
||
let context = JSContext() | ||
|
||
let bytes: [UInt8] = [1, 2, 3, 4, 5, 6, 7, 8] | ||
context.global["buffer"] = JSObject(newArrayBufferWithBytes: bytes, in: context) | ||
|
||
context.evaluateScript("new DataView(buffer).setUint8(0, 5)") | ||
|
||
XCTAssertEqual(context["buffer"].copyBytes().map(Array.init), [5, 2, 3, 4, 5, 6, 7, 8]) | ||
|
||
} | ||
|
||
func testSlice() { | ||
|
||
let context = JSContext() | ||
|
||
let bytes: [UInt8] = [1, 2, 3, 4, 5, 6, 7, 8] | ||
context.global["buffer"] = JSObject(newArrayBufferWithBytes: bytes, in: context) | ||
|
||
XCTAssertEqual(context.evaluateScript("buffer.slice(2, 4)").copyBytes().map(Array.init), [3, 4]) | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
// | ||
// FunctionTest.swift | ||
// | ||
// The MIT License | ||
// Copyright (c) 2015 - 2020 Susan Cheng. All rights reserved. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
// | ||
|
||
import SwiftJS | ||
import XCTest | ||
|
||
class FunctionTest: XCTestCase { | ||
|
||
func testConstructor() { | ||
|
||
let context = JSContext() | ||
|
||
let myClass = JSObject(newFunctionIn: context) { context, this, arguments in | ||
|
||
let result = arguments[0].doubleValue! + arguments[1].doubleValue! | ||
|
||
let object = JSObject(newObjectIn: context) | ||
object["result"] = JSObject(double: result, in: context) | ||
|
||
return object | ||
} | ||
|
||
XCTAssertTrue(myClass.isConstructor) | ||
|
||
context.global["myClass"] = myClass | ||
|
||
let result = context.evaluateScript("new myClass(1, 2)") | ||
XCTAssertNil(context.exception, "\(context.exception!)") | ||
|
||
XCTAssertTrue(result.isObject) | ||
XCTAssertEqual(result["result"].doubleValue, 3) | ||
|
||
XCTAssertTrue(result.isInstance(of: myClass)) | ||
} | ||
|
||
func testFunction1() { | ||
|
||
let context = JSContext() | ||
|
||
let myFunction = JSObject(newFunctionIn: context) { context, this, arguments in | ||
|
||
let result = arguments[0].doubleValue! + arguments[1].doubleValue! | ||
|
||
return JSObject(double: result, in: context) | ||
} | ||
|
||
XCTAssertTrue(myFunction.isFunction) | ||
|
||
let result = myFunction.call(withArguments: [JSObject(double: 1, in: context), JSObject(double: 2, in: context)]) | ||
XCTAssertNil(context.exception, "\(context.exception!)") | ||
|
||
XCTAssertTrue(result.isNumber) | ||
XCTAssertEqual(result.doubleValue, 3) | ||
} | ||
|
||
func testFunction2() { | ||
|
||
let context = JSContext() | ||
|
||
let myFunction = JSObject(newFunctionIn: context) { context, this, arguments in | ||
|
||
let result = arguments[0].doubleValue! + arguments[1].doubleValue! | ||
|
||
return JSObject(double: result, in: context) | ||
} | ||
|
||
XCTAssertTrue(myFunction.isFunction) | ||
|
||
context.global["myFunction"] = myFunction | ||
|
||
let result = context.evaluateScript("myFunction(1, 2)") | ||
XCTAssertNil(context.exception, "\(context.exception!)") | ||
|
||
XCTAssertTrue(result.isNumber) | ||
XCTAssertEqual(result.doubleValue, 3) | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
// | ||
// PropertyDescriptorTest.swift | ||
// | ||
// The MIT License | ||
// Copyright (c) 2015 - 2020 Susan Cheng. All rights reserved. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
// | ||
|
||
import SwiftJS | ||
import XCTest | ||
|
||
class PropertyDescriptorTest: XCTestCase { | ||
|
||
func testGetter() { | ||
|
||
let context = JSContext() | ||
|
||
context.global["obj"] = JSObject(newObjectIn: context) | ||
|
||
let desc = JSPropertyDescriptor( | ||
getter: { this in JSObject(double: 3, in: this.context) } | ||
) | ||
|
||
context.global["obj"].defineProperty("three", desc) | ||
|
||
let result = context.evaluateScript("obj.three") | ||
XCTAssertNil(context.exception, "\(context.exception!)") | ||
|
||
XCTAssertEqual(result.doubleValue, 3) | ||
} | ||
|
||
func testSetter() { | ||
|
||
let context = JSContext() | ||
|
||
context.global["obj"] = JSObject(newObjectIn: context) | ||
|
||
let desc = JSPropertyDescriptor( | ||
getter: { this in this["number_container"] }, | ||
setter: { this, newValue in this["number_container"] = newValue } | ||
) | ||
|
||
context.global["obj"].defineProperty("number", desc) | ||
|
||
context.evaluateScript("obj.number = 5") | ||
XCTAssertNil(context.exception, "\(context.exception!)") | ||
|
||
XCTAssertEqual(context.global["obj"]["number"].doubleValue, 5) | ||
XCTAssertEqual(context.global["obj"]["number_container"].doubleValue, 5) | ||
|
||
context.evaluateScript("obj.number = 3") | ||
XCTAssertNil(context.exception, "\(context.exception!)") | ||
|
||
XCTAssertEqual(context.global["obj"]["number"].doubleValue, 3) | ||
XCTAssertEqual(context.global["obj"]["number_container"].doubleValue, 3) | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters