@@ -8,18 +8,12 @@ import Testing
8
8
9
9
@Suite struct BridgeJSLinkTests {
10
10
private func snapshot(
11
- swiftAPI : ExportSwift ,
11
+ bridgeJSLink : BridgeJSLink ,
12
12
name: String ? = nil ,
13
13
filePath: String = #filePath,
14
14
function: String = #function,
15
15
sourceLocation: Testing . SourceLocation = #_sourceLocation
16
16
) throws {
17
- let ( _, outputSkeleton) = try #require( try swiftAPI. finalize ( ) )
18
- let encoder = JSONEncoder ( )
19
- encoder. outputFormatting = [ . prettyPrinted, . sortedKeys]
20
- let outputSkeletonData = try encoder. encode ( outputSkeleton)
21
- var bridgeJSLink = BridgeJSLink ( )
22
- try bridgeJSLink. addExportedSkeletonFile ( data: outputSkeletonData)
23
17
let ( outputJs, outputDts) = try bridgeJSLink. link ( )
24
18
try assertSnapshot (
25
19
name: name,
@@ -43,19 +37,44 @@ import Testing
43
37
" Inputs "
44
38
)
45
39
46
- static func collectInputs( ) -> [ String ] {
40
+ static func collectInputs( extension : String ) -> [ String ] {
47
41
let fileManager = FileManager . default
48
42
let inputs = try ! fileManager. contentsOfDirectory ( atPath: Self . inputsDirectory. path)
49
- return inputs. filter { $0. hasSuffix ( " .swift " ) }
43
+ return inputs. filter { $0. hasSuffix ( `extension` ) }
50
44
}
51
45
52
- @Test ( arguments: collectInputs ( ) )
53
- func snapshot ( input: String ) throws {
46
+ @Test ( arguments: collectInputs ( extension : " .swift " ) )
47
+ func snapshotExport ( input: String ) throws {
54
48
let url = Self . inputsDirectory. appendingPathComponent ( input)
55
49
let sourceFile = Parser . parse ( source: try String ( contentsOf: url, encoding: . utf8) )
56
50
let swiftAPI = ExportSwift ( progress: . silent)
57
51
try swiftAPI. addSourceFile ( sourceFile, input)
58
52
let name = url. deletingPathExtension ( ) . lastPathComponent
59
- try snapshot ( swiftAPI: swiftAPI, name: name)
53
+
54
+ let ( _, outputSkeleton) = try #require( try swiftAPI. finalize ( ) )
55
+ let encoder = JSONEncoder ( )
56
+ encoder. outputFormatting = [ . prettyPrinted, . sortedKeys]
57
+ let outputSkeletonData = try encoder. encode ( outputSkeleton)
58
+ var bridgeJSLink = BridgeJSLink ( )
59
+ try bridgeJSLink. addExportedSkeletonFile ( data: outputSkeletonData)
60
+ try snapshot ( bridgeJSLink: bridgeJSLink, name: name + " .Export " )
61
+ }
62
+
63
+ @Test ( arguments: collectInputs ( extension: " .d.ts " ) )
64
+ func snapshotImport( input: String ) throws {
65
+ let url = Self . inputsDirectory. appendingPathComponent ( input)
66
+ let tsconfigPath = url. deletingLastPathComponent ( ) . appendingPathComponent ( " tsconfig.json " )
67
+
68
+ var importTS = ImportTS ( progress: . silent, moduleName: " TestModule " )
69
+ try importTS. addSourceFile ( url. path, tsconfigPath: tsconfigPath. path)
70
+ let name = url. deletingPathExtension ( ) . deletingPathExtension ( ) . lastPathComponent
71
+
72
+ let encoder = JSONEncoder ( )
73
+ encoder. outputFormatting = [ . prettyPrinted, . sortedKeys]
74
+ let outputSkeletonData = try encoder. encode ( importTS. skeleton)
75
+
76
+ var bridgeJSLink = BridgeJSLink ( )
77
+ try bridgeJSLink. addImportedSkeletonFile ( data: outputSkeletonData)
78
+ try snapshot ( bridgeJSLink: bridgeJSLink, name: name + " .Import " )
60
79
}
61
80
}
0 commit comments