-
Notifications
You must be signed in to change notification settings - Fork 321
/
Copy pathTestUtils.swift
46 lines (41 loc) · 1.83 KB
/
TestUtils.swift
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
// Copyright 2019 Google LLC
//
// 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
//
// https://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
@testable import Fuzzilli
extension Program: @retroactive Equatable {
// Fairly expensive equality testing, but it's only needed for testing anyway... :)
public static func == (lhs: Program, rhs: Program) -> Bool {
// We consider two programs to be equal if their code is equal
let code1 = lhs.code.map({ $0.asProtobuf() })
let code2 = rhs.code.map({ $0.asProtobuf() })
return code1 == code2
}
}
// Convenience variable constructor
func v(_ n: Int) -> Variable {
return Variable(number: n)
}
func GetJavaScriptExecutorOrSkipTest() throws -> JavaScriptExecutor {
guard let runner = JavaScriptExecutor() else {
throw XCTSkip("Could not find js shell executable. Install Node.js (or if you want to use a different shell, modify the FUZZILLI_TEST_SHELL variable).")
}
return runner
}
func GetJavaScriptExecutorOrSkipTest(type: JavaScriptExecutor.ExecutorType, withArguments args: [String]) throws -> JavaScriptExecutor {
guard let runner = JavaScriptExecutor(type: type, withArguments: args) else {
throw XCTSkip("Could not find js shell executable. Install Node.js (or if you want to use a different shell, modify the FUZZILLI_TEST_SHELL variable).")
}
return runner
}