Skip to content

Remaining commits #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 13 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/SwiftDriver/Options/OptionParsing.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ extension OptionTable {
/// Throws an error if the command line contains any errors.
public func parse(_ arguments: [String]) throws -> ParsedOptions {
var trie = PrefixTrie<String.UTF8View, Option>()
for opt in Option.allOptions {
for opt in options {
trie[opt.spelling.utf8] = opt
}

Expand Down
194 changes: 194 additions & 0 deletions Tests/SwiftDriverTests/AssertDiagnosticsTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,194 @@
//===--- AssertDiagnosticsTests.swift - Diagnostic Test Assertion Tests ---===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//

import XCTest
import SwiftDriver

// Yes, these are meta-tests! `assertDiagnostics(do:)` and friends are
// complicated enough to warrant a few tests of their own. To test that they
// fail when they're supposed to, this test class has access to an
// `assertFails(times:during:)` helper; see `FailableTestCase` below for the
// implementation.

class AssertDiagnosticsTests: FailableTestCase {
func testAssertNoDiagnostics() {
assertNoDiagnostics { _ in }

assertFails {
assertNoDiagnostics { diags in
diags.emit(error: "something happened")
}
}
assertFails {
assertNoDiagnostics { diags in
diags.emit(warning: "hello")
}
}

// Unexpected warnings/notes/remarks are okay
assertNoDiagnostics { diags in
diags.emit(note: "hello")
}
assertNoDiagnostics { diags in
diags.emit(remark: "hello")
}
}

func testAssertDiagnostics() {
assertDiagnostics { diags, match in
diags.emit(error: "yankees won again")
match.expect(.error("won"))
}
assertDiagnostics { diags, match in
match.expect(.error("won"))
diags.emit(error: "yankees won again")
}

assertFails(times: 2) {
assertDiagnostics { diags, match in
match.expect(.error("lost"))
diags.emit(error: "yankees won again")
}
}

assertFails(times: 2) {
assertDiagnostics { diags, match in
diags.emit(error: "yankees won again")
diags.emit(error: "yankees won yet again")
}
}

assertFails(times: 2) {
assertDiagnostics { diags, match in
match.expect(.error("won"))
match.expect(.error("won"))
}
}

// We should get two assertion failures: one for expecting the warning, one
// for emitting the error.
assertFails(times: 2) {
assertDiagnostics { diags, match in
match.expect(.warning("won"))
diags.emit(.error("yankees won again"))
}
}

// We should get one assertion failure for the unexpected error. An
// unexpected note is okay.
assertFails(times: 1) {
assertDiagnostics { diags, match in
diags.emit(error: "yankees won again")
diags.emit(note: "investigate their star's doctor")
}
}

// ...unless we tighten things up.
assertFails(times: 2) {
assertDiagnostics { diags, match in
diags.emit(error: "yankees won again")
diags.emit(note: "investigate their star's doctor")
match.forbidUnexpected(.note)
}
}

// ...or loosen them.
assertDiagnostics { diags, match in
diags.emit(error: "yankees won again")
diags.emit(note: "investigate their star's doctor")
match.permitUnexpected(.error)
}
}

func testAssertDriverDiagosotics() throws {
try assertNoDriverDiagnostics(args: "swiftc", "test.swift")

try assertDriverDiagnostics(args: "swiftc", "test.swift") { driver, verify in
driver.diagnosticEngine.emit(.error_mode_cannot_emit_module)
verify.expect(.error_mode_cannot_emit_module)
}

try assertFails {
try assertDriverDiagnostics(args: "swiftc", "test.swift") { driver, verify in
verify.expect(.error_mode_cannot_emit_module)
}
}

try assertFails {
try assertDriverDiagnostics(args: "swiftc", "test.swift") { driver, verify in
driver.diagnosticEngine.emit(.error_mode_cannot_emit_module)
}
}

try assertFails(times: 2) {
try assertDriverDiagnostics(args: "swiftc", "test.swift") { driver, verify in
driver.diagnosticEngine.emit(.error_mode_cannot_emit_module)
verify.expect(.error_static_emit_executable_disallowed)
}
}
}
}

// MARK: - Failure testing

/// Subclasses are considered to pass if exactly the right number of test assertions
/// fail in each `assertFails(times:during:)` block. Failures are recorded
/// if they fail too often or not often enough.
class FailableTestCase: XCTestCase {
fileprivate var anticipatedFailures = 0

func assertFails(
times: Int = 1,
_ message: String = "",
file: String = #file,
line: Int = #line,
during body: () throws -> Void
) rethrows {
var outer = anticipatedFailures
anticipatedFailures = times

defer {
if anticipatedFailures > 0 {
recordFailure(
withDescription: "\(anticipatedFailures) failure(s) were supposed to occur, but did not: \(message)",
inFile: file, atLine: line,
expected: false
)
}
anticipatedFailures = outer
}

try body()
}

override func setUp() {
super.setUp()
anticipatedFailures = 0
}

override func recordFailure(
withDescription description: String,
inFile filePath: String, atLine lineNumber: Int,
expected: Bool
) {
guard anticipatedFailures == 0 else {
anticipatedFailures -= 1
return
}

super.recordFailure(
withDescription: description,
inFile: filePath, atLine: lineNumber,
expected: expected
)
}
}
Loading