forked from swiftwasm/JavaScriptKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExportAPITests.swift
More file actions
882 lines (722 loc) · 21.7 KB
/
ExportAPITests.swift
File metadata and controls
882 lines (722 loc) · 21.7 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
import XCTest
import JavaScriptKit
import JavaScriptEventLoop
@_extern(wasm, module: "BridgeJSRuntimeTests", name: "runJsWorks")
@_extern(c)
func runJsWorks() -> Void
@JS func roundTripVoid() -> Void {
return
}
@JS func roundTripInt(v: Int) -> Int {
return v
}
@JS func roundTripFloat(v: Float) -> Float {
return v
}
@JS func roundTripDouble(v: Double) -> Double {
return v
}
@JS func roundTripBool(v: Bool) -> Bool {
return v
}
@JS func roundTripString(v: String) -> String {
return v
}
@JS func roundTripSwiftHeapObject(v: Greeter) -> Greeter {
return v
}
@JS func roundTripJSObject(v: JSObject) -> JSObject {
return v
}
struct TestError: Error {
let message: String
}
@JS func throwsSwiftError(shouldThrow: Bool) throws(JSException) -> Void {
if shouldThrow {
throw JSException(JSError(message: "TestError").jsValue)
}
}
@JS func throwsWithIntResult() throws(JSException) -> Int { return 1 }
@JS func throwsWithStringResult() throws(JSException) -> String { return "Ok" }
@JS func throwsWithBoolResult() throws(JSException) -> Bool { return true }
@JS func throwsWithFloatResult() throws(JSException) -> Float { return 1.0 }
@JS func throwsWithDoubleResult() throws(JSException) -> Double { return 1.0 }
@JS func throwsWithSwiftHeapObjectResult() throws(JSException) -> Greeter { return Greeter(name: "Test") }
@JS func throwsWithJSObjectResult() throws(JSException) -> JSObject { return JSObject() }
@JS func asyncRoundTripVoid() async -> Void { return }
@JS func asyncRoundTripInt(v: Int) async -> Int { return v }
@JS func asyncRoundTripFloat(v: Float) async -> Float { return v }
@JS func asyncRoundTripDouble(v: Double) async -> Double { return v }
@JS func asyncRoundTripBool(v: Bool) async -> Bool { return v }
@JS func asyncRoundTripString(v: String) async -> String { return v }
@JS func asyncRoundTripSwiftHeapObject(v: Greeter) async -> Greeter { return v }
@JS func asyncRoundTripJSObject(v: JSObject) async -> JSObject { return v }
@JS class Greeter {
@JS var name: String
@JS let prefix: String = "Hello"
nonisolated(unsafe) static var onDeinit: () -> Void = {}
@JS init(name: String) {
self.name = name
}
@JS func greet() -> String {
return "\(prefix), \(name)!"
}
@JS func changeName(name: String) {
self.name = name
}
deinit {
Self.onDeinit()
}
}
@JS func takeGreeter(g: Greeter, name: String) {
g.changeName(name: name)
}
// Test class without @JS init constructor
@JS class Calculator {
nonisolated(unsafe) static var onDeinit: () -> Void = {}
@JS func square(value: Int) -> Int {
return value * value
}
@JS func add(a: Int, b: Int) -> Int {
return a + b
}
deinit {
Self.onDeinit()
}
}
@JS internal class InternalGreeter {}
@JS public class PublicGreeter {}
@JS package class PackageGreeter {}
@JS func createCalculator() -> Calculator {
return Calculator()
}
@JS func useCalculator(calc: Calculator, x: Int, y: Int) -> Int {
return calc.add(a: calc.square(value: x), b: y)
}
@JS func testGreeterToJSValue() -> JSObject {
let greeter = Greeter(name: "Test")
return greeter.jsValue.object!
}
@JS func testCalculatorToJSValue() -> JSObject {
let calc = Calculator()
return calc.jsValue.object!
}
@JS func testSwiftClassAsJSValue(greeter: Greeter) -> JSObject {
return greeter.jsValue.object!
}
// MARK: - Enum Tests
@JS enum Direction {
case north
case south
case east
case west
}
@JS enum Status {
case loading
case success
case error
}
@JS enum Theme: String {
case light = "light"
case dark = "dark"
case auto = "auto"
}
@JS enum HttpStatus: Int {
case ok = 200
case notFound = 404
case serverError = 500
case unknown = -1
}
@JS(enumStyle: .tsEnum) enum TSDirection {
case north
case south
case east
case west
}
@JS(enumStyle: .tsEnum) enum TSTheme: String {
case light = "light"
case dark = "dark"
case auto = "auto"
}
@JS func setDirection(_ direction: Direction) -> Direction {
return direction
}
@JS func getDirection() -> Direction {
return .north
}
@JS func processDirection(_ input: Direction) -> Status {
switch input {
case .north, .south: return .success
case .east, .west: return .loading
}
}
@JS func setTheme(_ theme: Theme) -> Theme {
return theme
}
@JS func getTheme() -> Theme {
return .light
}
@JS func setHttpStatus(_ status: HttpStatus) -> HttpStatus {
return status
}
@JS func getHttpStatus() -> HttpStatus {
return .ok
}
@JS func processTheme(_ theme: Theme) -> HttpStatus {
switch theme {
case .light: return .ok
case .dark: return .notFound
case .auto: return .serverError
}
}
@JS func setTSDirection(_ direction: TSDirection) -> TSDirection {
return direction
}
@JS func getTSDirection() -> TSDirection {
return .north
}
@JS func setTSTheme(_ theme: TSTheme) -> TSTheme {
return theme
}
@JS func getTSTheme() -> TSTheme {
return .light
}
// MARK: - Namespace Enums
@JS enum Utils {
@JS class Converter {
@JS init() {}
@JS func toString(value: Int) -> String {
return String(value)
}
}
}
@JS enum Networking {
@JS enum API {
@JS enum Method {
case get
case post
case put
case delete
}
@JS class HTTPServer {
@JS init() {}
@JS func call(_ method: Method) {}
}
}
}
@JS enum Configuration {
@JS enum LogLevel: String {
case debug = "debug"
case info = "info"
case warning = "warning"
case error = "error"
}
@JS enum Port: Int {
case http = 80
case https = 443
case development = 3000
}
}
@JS(namespace: "Networking.APIV2")
enum Internal {
@JS enum SupportedMethod {
case get
case post
}
@JS class TestServer {
@JS init() {}
@JS func call(_ method: SupportedMethod) {}
}
}
@JS func roundtripNetworkingAPIMethod(_ method: Networking.API.Method) -> Networking.API.Method {
return method
}
@JS func roundtripConfigurationLogLevel(_ level: Configuration.LogLevel) -> Configuration.LogLevel {
return level
}
@JS func roundtripConfigurationPort(_ port: Configuration.Port) -> Configuration.Port {
return port
}
@JS func processConfigurationLogLevel(_ level: Configuration.LogLevel) -> Configuration.Port {
switch level {
case .debug: return .development
case .info: return .http
case .warning: return .https
case .error: return .development
}
}
@JS func roundtripInternalSupportedMethod(_ method: Internal.SupportedMethod) -> Internal.SupportedMethod {
return method
}
@JS enum APIResult {
case success(String)
case failure(Int)
case flag(Bool)
case rate(Float)
case precise(Double)
case info
}
@JS func roundtripAPIResult(result: APIResult) -> APIResult {
return result
}
@JS func makeAPIResultSuccess(_ value: String) -> APIResult {
return .success(value)
}
@JS func makeAPIResultFailure(_ value: Int) -> APIResult {
return .failure(value)
}
@JS func makeAPIResultInfo() -> APIResult {
return .info
}
@JS func makeAPIResultFlag(_ value: Bool) -> APIResult {
return .flag(value)
}
@JS func makeAPIResultRate(_ value: Float) -> APIResult {
return .rate(value)
}
@JS func makeAPIResultPrecise(_ value: Double) -> APIResult {
return .precise(value)
}
@JS
enum ComplexResult {
case success(String)
case error(String, Int)
case location(Double, Double, String)
case status(Bool, Int, String)
case coordinates(Double, Double, Double)
case comprehensive(Bool, Bool, Int, Int, Double, Double, String, String, String)
case info
}
@JS func roundtripComplexResult(_ result: ComplexResult) -> ComplexResult {
return result
}
@JS func makeComplexResultSuccess(_ value: String) -> ComplexResult {
return .success(value)
}
@JS func makeComplexResultError(_ message: String, _ code: Int) -> ComplexResult {
return .error(message, code)
}
@JS func makeComplexResultLocation(_ lat: Double, _ lng: Double, _ name: String) -> ComplexResult {
return .location(lat, lng, name)
}
@JS func makeComplexResultStatus(_ active: Bool, _ code: Int, _ message: String) -> ComplexResult {
return .status(active, code, message)
}
@JS func makeComplexResultCoordinates(_ x: Double, _ y: Double, _ z: Double) -> ComplexResult {
return .coordinates(x, y, z)
}
@JS func makeComplexResultComprehensive(
_ flag1: Bool,
_ flag2: Bool,
_ count1: Int,
_ count2: Int,
_ value1: Double,
_ value2: Double,
_ text1: String,
_ text2: String,
_ text3: String
) -> ComplexResult {
return .comprehensive(flag1, flag2, count1, count2, value1, value2, text1, text2, text3)
}
@JS func makeComplexResultInfo() -> ComplexResult {
return .info
}
@JS enum Utilities {
@JS enum Result {
case success(String)
case failure(String, Int)
case status(Bool, Int, String)
}
}
@JS enum API {
@JS enum NetworkingResult {
case success(String)
case failure(String, Int)
}
}
@JS func makeUtilitiesResultSuccess(_ message: String) -> Utilities.Result {
return .success(message)
}
@JS func makeUtilitiesResultFailure(_ error: String, _ code: Int) -> Utilities.Result {
return .failure(error, code)
}
@JS func makeUtilitiesResultStatus(_ active: Bool, _ code: Int, _ message: String) -> Utilities.Result {
return .status(active, code, message)
}
@JS func makeAPINetworkingResultSuccess(_ message: String) -> API.NetworkingResult {
return .success(message)
}
@JS func makeAPINetworkingResultFailure(_ error: String, _ code: Int) -> API.NetworkingResult {
return .failure(error, code)
}
@JS func roundtripUtilitiesResult(_ result: Utilities.Result) -> Utilities.Result {
return result
}
@JS func roundtripAPINetworkingResult(_ result: API.NetworkingResult) -> API.NetworkingResult {
return result
}
// MARK: - Optionals
@JS func roundTripOptionalString(name: String?) -> String? {
return name
}
@JS func roundTripOptionalInt(value: Int?) -> Int? {
return value
}
@JS func roundTripOptionalBool(flag: Bool?) -> Bool? {
return flag
}
@JS func roundTripOptionalFloat(number: Float?) -> Float? {
return number
}
@JS func roundTripOptionalDouble(precision: Double?) -> Double? {
return precision
}
@JS func roundTripOptionalSyntax(name: Optional<String>) -> Optional<String> {
return name
}
@JS func roundTripOptionalMixSyntax(name: String?) -> Optional<String> {
return name
}
@JS func roundTripOptionalSwiftSyntax(name: Swift.Optional<String>) -> Swift.Optional<String> {
return name
}
@JS func roundTripOptionalWithSpaces(value: Optional<Double>) -> Optional<Double> {
return value
}
typealias OptionalAge = Int?
@JS func roundTripOptionalTypeAlias(age: OptionalAge) -> OptionalAge {
return age
}
@JS func roundTripOptionalStatus(value: Status?) -> Status? {
return value
}
@JS func roundTripOptionalTheme(value: Theme?) -> Theme? {
return value
}
@JS func roundTripOptionalHttpStatus(value: HttpStatus?) -> HttpStatus? {
return value
}
@JS func roundTripOptionalTSDirection(value: TSDirection?) -> TSDirection? {
return value
}
@JS func roundTripOptionalTSTheme(value: TSTheme?) -> TSTheme? {
return value
}
@JS func roundTripOptionalNetworkingAPIMethod(_ method: Networking.API.Method?) -> Networking.API.Method? {
return method
}
@JS func roundTripOptionalAPIResult(value: APIResult?) -> APIResult? {
return value
}
@JS func roundTripOptionalComplexResult(_ result: ComplexResult?) -> ComplexResult? {
return result
}
@JS func roundTripOptionalClass(value: Greeter?) -> Greeter? {
return value
}
@JS class OptionalPropertyHolder {
@JS var optionalName: String?
@JS var optionalAge: Int? = nil
@JS var optionalGreeter: Greeter? = nil
@JS init(optionalName: String?) {
self.optionalName = optionalName
}
}
@JS
enum APIOptionalResult {
case success(String?)
case failure(Int?, Bool?)
case status(Bool?, Int?, String?)
}
@JS func roundTripOptionalAPIOptionalResult(result: APIOptionalResult?) -> APIOptionalResult? {
return result
}
// MARK: - Property Tests
// Simple class for SwiftHeapObject property testing
@JS class SimplePropertyHolder {
@JS var value: Int
@JS init(value: Int) {
self.value = value
}
}
// Test class for various property types
@JS class PropertyHolder {
// Primitive properties
@JS var intValue: Int
@JS var floatValue: Float
@JS var doubleValue: Double
@JS var boolValue: Bool
@JS var stringValue: String
// Readonly primitive properties
@JS let readonlyInt: Int = 42
@JS let readonlyFloat: Float = 3.14
@JS let readonlyDouble: Double = 2.718281828
@JS let readonlyBool: Bool = true
@JS let readonlyString: String = "constant"
// JSObject property
@JS var jsObject: JSObject
// SwiftHeapObject property
@JS var sibling: SimplePropertyHolder
// Lazy stored property
@JS lazy var lazyValue: String = "computed lazily"
// Computed property with getter only (readonly)
@JS var computedReadonly: Int {
return intValue * 2
}
// Computed property with getter and setter
@JS var computedReadWrite: String {
get {
return "Value: \(intValue)"
}
set {
// Parse the number from "Value: X" format
if let range = newValue.range(of: "Value: "),
let number = Int(String(newValue[range.upperBound...]))
{
intValue = number
}
}
}
// Property with property observers
@JS var observedProperty: Int {
willSet {
Self.willSetCallCount += 1
Self.lastWillSetOldValue = self.observedProperty
Self.lastWillSetNewValue = newValue
}
didSet {
Self.didSetCallCount += 1
Self.lastDidSetOldValue = oldValue
Self.lastDidSetNewValue = self.observedProperty
}
}
// Static properties to track observer calls
nonisolated(unsafe) static var willSetCallCount: Int = 0
nonisolated(unsafe) static var didSetCallCount: Int = 0
nonisolated(unsafe) static var lastWillSetOldValue: Int = 0
nonisolated(unsafe) static var lastWillSetNewValue: Int = 0
nonisolated(unsafe) static var lastDidSetOldValue: Int = 0
nonisolated(unsafe) static var lastDidSetNewValue: Int = 0
@JS init(
intValue: Int,
floatValue: Float,
doubleValue: Double,
boolValue: Bool,
stringValue: String,
jsObject: JSObject,
sibling: SimplePropertyHolder
) {
self.intValue = intValue
self.floatValue = floatValue
self.doubleValue = doubleValue
self.boolValue = boolValue
self.stringValue = stringValue
self.jsObject = jsObject
self.sibling = sibling
self.observedProperty = intValue // Initialize observed property
}
@JS func getAllValues() -> String {
return "int:\(intValue),float:\(floatValue),double:\(doubleValue),bool:\(boolValue),string:\(stringValue)"
}
}
@JS func createPropertyHolder(
intValue: Int,
floatValue: Float,
doubleValue: Double,
boolValue: Bool,
stringValue: String,
jsObject: JSObject
) -> PropertyHolder {
let sibling = SimplePropertyHolder(value: 999)
return PropertyHolder(
intValue: intValue,
floatValue: floatValue,
doubleValue: doubleValue,
boolValue: boolValue,
stringValue: stringValue,
jsObject: jsObject,
sibling: sibling
)
}
@JS func testPropertyHolder(holder: PropertyHolder) -> String {
return holder.getAllValues()
}
@JS func resetObserverCounts() {
PropertyHolder.willSetCallCount = 0
PropertyHolder.didSetCallCount = 0
PropertyHolder.lastWillSetOldValue = 0
PropertyHolder.lastWillSetNewValue = 0
PropertyHolder.lastDidSetOldValue = 0
PropertyHolder.lastDidSetNewValue = 0
}
@JS func getObserverStats() -> String {
return
"willSet:\(PropertyHolder.willSetCallCount),didSet:\(PropertyHolder.didSetCallCount),willSetOld:\(PropertyHolder.lastWillSetOldValue),willSetNew:\(PropertyHolder.lastWillSetNewValue),didSetOld:\(PropertyHolder.lastDidSetOldValue),didSetNew:\(PropertyHolder.lastDidSetNewValue)"
}
// MARK: - Static Functions
@JS class MathUtils {
@JS static func add(a: Int, b: Int) -> Int {
return a + b
}
@JS class func substract(a: Int, b: Int) -> Int {
return a - b
}
}
@JS enum StaticCalculator {
case scientific
case basic
@JS static func roundtrip(_ value: Int) -> Int {
return value
}
}
@JS enum StaticUtils {
@JS enum Nested {
@JS static func roundtrip(_ value: String) -> String {
return value
}
}
}
// MARK: - Default Parameters
@JS func testStringDefault(message: String = "Hello World") -> String {
return message
}
@JS func testIntDefault(count: Int = 42) -> Int {
return count
}
@JS func testBoolDefault(flag: Bool = true) -> Bool {
return flag
}
@JS func testOptionalDefault(name: String? = nil) -> String? {
return name
}
@JS func testMultipleDefaults(
title: String = "Default Title",
count: Int = -10,
enabled: Bool = false
) -> String {
return "\(title): \(count) (\(enabled))"
}
@JS func testSimpleEnumDefault(status: Status = .success) -> Status {
return status
}
@JS func testDirectionDefault(direction: Direction = .north) -> Direction {
return direction
}
@JS func testRawStringEnumDefault(theme: Theme = .light) -> Theme {
return theme
}
@JS func testComplexInit(greeter: Greeter = Greeter(name: "DefaultGreeter")) -> String {
return greeter.greet()
}
@JS func testEmptyInit(_ object: StaticPropertyHolder = StaticPropertyHolder()) -> StaticPropertyHolder {
return object
}
@JS class ConstructorDefaults {
@JS var name: String
@JS var count: Int
@JS var enabled: Bool
@JS var status: Status
@JS var tag: String?
@JS init(
name: String = "Default",
count: Int = 42,
enabled: Bool = true,
status: Status = .success,
tag: String? = nil
) {
self.name = name
self.count = count
self.enabled = enabled
self.status = status
self.tag = tag
}
@JS func describe() -> String {
let tagStr = tag ?? "nil"
let statusStr: String
switch status {
case .loading: statusStr = "loading"
case .success: statusStr = "success"
case .error: statusStr = "error"
}
return "\(name):\(count):\(enabled):\(statusStr):\(tagStr)"
}
}
// MARK: - Static Properties
@JS class StaticPropertyHolder {
@JS static let staticConstant: String = "constant"
@JS nonisolated(unsafe) static var staticVariable: Int = 42
@JS nonisolated(unsafe) static var staticString: String = "initial"
@JS nonisolated(unsafe) static var staticBool: Bool = true
@JS nonisolated(unsafe) static var staticFloat: Float = 3.14
@JS nonisolated(unsafe) static var staticDouble: Double = 2.718
@JS static var computedProperty: String {
get { return "computed: \(staticVariable)" }
set {
if let number = Int(newValue.replacingOccurrences(of: "computed: ", with: "")) {
staticVariable = number
}
}
}
@JS static var readOnlyComputed: Int {
return staticVariable * 2
}
@JS nonisolated(unsafe) static var optionalString: String? = nil
@JS nonisolated(unsafe) static var optionalInt: Int? = nil
@JS nonisolated(unsafe) static var jsObjectProperty: JSObject = JSObject()
@JS init() {}
}
@JS enum StaticPropertyEnum {
case option1
case option2
@JS nonisolated(unsafe) static var enumProperty: String = "enum value"
@JS static let enumConstant: Int = 42
@JS nonisolated(unsafe) static var enumBool: Bool = false
@JS nonisolated(unsafe) static var enumVariable: Int = 200
@JS static var computedReadonly: Int {
return enumVariable * 2
}
@JS static var computedReadWrite: String {
get {
return "Value: \(enumVariable)"
}
set {
if let range = newValue.range(of: "Value: "),
let number = Int(String(newValue[range.upperBound...]))
{
enumVariable = number
}
}
}
}
@JS enum StaticPropertyNamespace {
@JS nonisolated(unsafe) static var namespaceProperty: String = "namespace"
@JS static let namespaceConstant: String = "constant"
@JS enum NestedProperties {
@JS nonisolated(unsafe) static var nestedProperty: Int = 999
@JS static let nestedConstant: String = "nested"
@JS nonisolated(unsafe) static var nestedDouble: Double = 1.414
}
}
// Test functions for static properties
@JS func getAllStaticPropertyValues() -> String {
return
"const:\(StaticPropertyHolder.staticConstant),var:\(StaticPropertyHolder.staticVariable),computed:\(StaticPropertyHolder.computedProperty),readonly:\(StaticPropertyHolder.readOnlyComputed)"
}
class ExportAPITests: XCTestCase {
func testAll() {
var hasDeinitGreeter = false
var hasDeinitCalculator = false
Greeter.onDeinit = {
hasDeinitGreeter = true
}
Calculator.onDeinit = {
hasDeinitCalculator = true
}
runJsWorks()
XCTAssertTrue(hasDeinitGreeter, "Greeter (with @JS init) should have been deinitialized")
XCTAssertTrue(hasDeinitCalculator, "Calculator (without @JS init) should have been deinitialized")
}
func testAllAsync() async throws {
_ = try await runAsyncWorks().value()
}
}