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
|
import XCTest
@testable import WIT
class ValidationTests: XCTestCase {
func assertDiagnostics(_ text: String, expected: [String], line: UInt = #line) throws {
let packageResolver = PackageResolver()
var lexer = Lexer(cursor: .init(input: text))
let sourceFile = try SourceFileSyntax.parse(lexer: &lexer, fileName: "test.wit")
let pkg = try packageResolver.register(packageSources: [sourceFile])
let context = SemanticsContext(rootPackage: pkg, packageResolver: packageResolver)
let diagnostics = try context.validate(package: pkg)
XCTAssertEqual(diagnostics.flatMap(\.value).map(\.message), expected, line: line)
}
func testInvalidTypeReferences() throws {
try assertDiagnostics(
"""
package foo:bar
interface x {
type x = invalid1
}
world y {
type y = invalid2
}
""",
expected: [
"Cannot find type 'invalid1' in scope",
"Cannot find type 'invalid2' in scope",
]
)
}
func testInvalidTypeReferencesInTypeDefinitions() throws {
try assertDiagnostics(
"""
package foo:bar
interface x {
record r1 {
f1: invalid1
}
variant v1 {
var-case1(invalid2),
var-case2,
}
union u1 {
invalid3,
}
type h1 = own<invalid4>
}
""",
expected: [
"Cannot find type 'invalid1' in scope",
"Cannot find type 'invalid2' in scope",
"Cannot find type 'invalid3' in scope",
"Cannot find type 'invalid4' in scope",
]
)
}
func testInvalidTypeReferencesInFunctions() throws {
try assertDiagnostics(
"""
package foo:bar
interface x {
f1: func() -> invalid1
f2: func(x: invalid2) -> invalid3
f3: func(a: invalid4, b: invalid5) -> (c: invalid6, d: invalid7)
}
""",
expected: [
"Cannot find type 'invalid1' in scope",
"Cannot find type 'invalid2' in scope",
"Cannot find type 'invalid3' in scope",
"Cannot find type 'invalid4' in scope",
"Cannot find type 'invalid5' in scope",
"Cannot find type 'invalid6' in scope",
"Cannot find type 'invalid7' in scope",
]
)
}
func testInvalidTypeReferencesInUse() throws {
try assertDiagnostics(
"""
package foo:bar
interface types {
type t1 = u8
}
interface x {
use types.{t1, invalid1}
use invalid2.{t2}
}
""",
expected: [
"Cannot find type 'invalid1' in scope",
"Cannot find interface 'invalid2' in scope",
]
)
}
func testValidateInlineInterface() throws {
try assertDiagnostics(
"""
package foo:bar
world x {
import y: interface {
type z = invalid1
type a = u8
type b = a
}
// a shoud not be visible here
type c = a
}
""",
expected: [
"Cannot find type 'invalid1' in scope",
"Cannot find type 'a' in scope",
]
)
try assertDiagnostics(
"""
package foo:bar
world x {
export y: interface {
type z = invalid1
type a = u8
type b = a
}
// a shoud not be visible here
type c = a
}
""",
expected: [
"Cannot find type 'invalid1' in scope",
"Cannot find type 'a' in scope",
]
)
}
func testValidateImportExport() throws {
try assertDiagnostics(
"""
package foo:bar
interface ok1 {}
interface ok2 {}
world x {
import ok1
import invalid1
export ok2
export invalid2
}
""",
expected: [
"Cannot find interface 'invalid1' in scope",
"Cannot find interface 'invalid2' in scope",
]
)
}
func testInvalidTopLevelUse() throws {
try assertDiagnostics(
"""
package foo:bar
use foo:my-pkg/my-iface
""",
expected: ["No such package 'foo:my-pkg'"]
)
try assertDiagnostics(
"""
package foo:bar
use foo
""",
expected: ["Cannot find interface 'foo' in scope"]
)
}
func testRecordRedeclaration() throws {
try assertDiagnostics(
"""
package foo:bar
interface x {
record r1 {
f1: u8,
f1: u8,
f2: u8,
f2: u32,
}
}
""",
expected: [
"Invalid redeclaration of 'f1'",
"Invalid redeclaration of 'f2'",
]
)
}
func testVariantRedeclaration() throws {
try assertDiagnostics(
"""
package foo:bar
interface x {
variant v1 {
var-case1,
var-case1,
var-case2(u8),
var-case2(u32),
}
}
""",
expected: [
"Invalid redeclaration of 'var-case1'",
"Invalid redeclaration of 'var-case2'",
]
)
}
}
|