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
|
/*
This source file is part of the Swift.org open source project
Copyright (c) 2021 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 Swift project authors
*/
import XCTest
@testable import SwiftDocC
import Markdown
class ChoiceTests: XCTestCase {
func testInvalidEmpty() throws {
let source = "@Choice"
let document = Document(parsing: source, options: .parseBlockDirectives)
let directive = document.child(at: 0) as? BlockDirective
XCTAssertNotNil(directive)
let (bundle, context) = try testBundleAndContext(named: "TestBundle")
directive.map { directive in
var problems = [Problem]()
XCTAssertEqual(Choice.directiveName, directive.name)
let choice = Choice(from: directive, source: nil, for: bundle, in: context, problems: &problems)
XCTAssertNil(choice)
let diagnosticIdentifiers = Set(problems.map { $0.diagnostic.identifier })
XCTAssertEqual(2, problems.count)
XCTAssertTrue(diagnosticIdentifiers.contains("org.swift.docc.HasExactlyOne<\(Choice.self), \(Justification.self)>.Missing"))
XCTAssertTrue(diagnosticIdentifiers.contains("org.swift.docc.HasArgument.isCorrect"))
XCTAssertTrue(problems.map { $0.diagnostic.severity }.allSatisfy { $0 == .warning })
}
}
func testInvalidMissingContent() throws {
let source = """
@Choice(isCorrect: true) {
@Justification {
Trust me, it's right.
}
}
"""
let document = Document(parsing: source, options: .parseBlockDirectives)
let directive = document.child(at: 0) as? BlockDirective
XCTAssertNotNil(directive)
let (bundle, context) = try testBundleAndContext(named: "TestBundle")
directive.map { directive in
var problems = [Problem]()
XCTAssertEqual(Choice.directiveName, directive.name)
let choice = Choice(from: directive, source: nil, for: bundle, in: context, problems: &problems)
XCTAssertNotNil(choice)
let diagnosticIdentifiers = Set(problems.map { $0.diagnostic.identifier })
XCTAssertEqual(1, problems.count)
XCTAssertTrue(diagnosticIdentifiers.contains("org.swift.docc.\(Choice.self).Empty"))
}
}
func testInvalidMissingJustification() throws {
let source = """
@Choice(isCorrect: true) {
This is some content.
}
"""
let document = Document(parsing: source, options: .parseBlockDirectives)
let directive = document.child(at: 0) as? BlockDirective
XCTAssertNotNil(directive)
let (bundle, context) = try testBundleAndContext(named: "TestBundle")
directive.map { directive in
var problems = [Problem]()
XCTAssertEqual(Choice.directiveName, directive.name)
let choice = Choice(from: directive, source: nil, for: bundle, in: context, problems: &problems)
XCTAssertNil(choice)
XCTAssertEqual(1, problems.count)
problems.first.map { problem in
XCTAssertEqual("org.swift.docc.HasExactlyOne<Choice, Justification>.Missing", problem.diagnostic.identifier)
}
}
}
func testInvalidMissingIsCorrect() throws {
let source = """
@Choice {
This is some content.
@Justification {
Trust me, it's right.
}
"""
let document = Document(parsing: source, options: .parseBlockDirectives)
let directive = document.child(at: 0) as? BlockDirective
XCTAssertNotNil(directive)
let (bundle, context) = try testBundleAndContext(named: "TestBundle")
directive.map { directive in
var problems = [Problem]()
XCTAssertEqual(Choice.directiveName, directive.name)
let choice = Choice(from: directive, source: nil, for: bundle, in: context, problems: &problems)
XCTAssertNil(choice)
XCTAssertEqual(1, problems.count)
problems.first.map { problem in
XCTAssertEqual("org.swift.docc.HasArgument.isCorrect", problem.diagnostic.identifier)
}
}
}
func testInvalidIsCorrect() throws {
let source = """
@Choice(isCorrect: blah) {
This is some content.
@Justification {
Trust me, it's right.
}
"""
let document = Document(parsing: source, options: .parseBlockDirectives)
let directive = document.child(at: 0) as? BlockDirective
XCTAssertNotNil(directive)
let (bundle, context) = try testBundleAndContext(named: "TestBundle")
directive.map { directive in
var problems = [Problem]()
XCTAssertEqual(Choice.directiveName, directive.name)
let choice = Choice(from: directive, source: nil, for: bundle, in: context, problems: &problems)
XCTAssertNil(choice)
XCTAssertEqual(1, problems.count)
problems.first.map { problem in
XCTAssertEqual("org.swift.docc.HasArgument.isCorrect.ConversionFailed", problem.diagnostic.identifier)
XCTAssertEqual(2, problem.possibleSolutions.count)
XCTAssertEqual("Use allowed value 'true'", problem.possibleSolutions[0].summary)
XCTAssertEqual("Use allowed value 'false'", problem.possibleSolutions[1].summary)
}
}
}
func testValidParagraph() throws {
let source = """
@Choice(isCorrect: true) {
This is some content.
@Justification {
Trust me, it's right.
}
}
"""
let document = Document(parsing: source, options: .parseBlockDirectives)
let directive = document.child(at: 0) as? BlockDirective
XCTAssertNotNil(directive)
let (bundle, context) = try testBundleAndContext(named: "TestBundle")
directive.map { directive in
var problems = [Problem]()
XCTAssertEqual(Choice.directiveName, directive.name)
let choice = Choice(from: directive, source: nil, for: bundle, in: context, problems: &problems)
XCTAssertNotNil(choice)
XCTAssertTrue(problems.isEmpty)
choice.map { choice in
let expectedDump = """
Choice @1:1-6:2 isCorrect: true
├─ MarkupContainer (1 element)
└─ Justification @3:4-5:5
└─ MarkupContainer (1 element)
"""
XCTAssertEqual(expectedDump, choice.dump())
}
}
}
func testValidCode() throws {
let source = """
@Choice(isCorrect: true) {
```swift
func foo() {}
```
@Justification {
Trust me, it's right.
}
}
"""
let document = Document(parsing: source, options: .parseBlockDirectives)
let directive = document.child(at: 0) as? BlockDirective
XCTAssertNotNil(directive)
let (bundle, context) = try testBundleAndContext(named: "TestBundle")
directive.map { directive in
var problems = [Problem]()
XCTAssertEqual(Choice.directiveName, directive.name)
let choice = Choice(from: directive, source: nil, for: bundle, in: context, problems: &problems)
XCTAssertNotNil(choice)
XCTAssertTrue(problems.isEmpty)
choice.map { choice in
let expectedDump = """
Choice @1:1-9:2 isCorrect: true
├─ MarkupContainer (1 element)
└─ Justification @6:4-8:5
└─ MarkupContainer (1 element)
"""
XCTAssertEqual(expectedDump, choice.dump())
}
}
}
func testValidImage() throws {
let source = """
@Choice(isCorrect: true) {
@Image(source: blah.png, alt: blah)
@Justification {
Trust me, it's right.
}
}
"""
let document = Document(parsing: source, options: .parseBlockDirectives)
let directive = document.child(at: 0) as? BlockDirective
XCTAssertNotNil(directive)
let (bundle, context) = try testBundleAndContext(named: "TestBundle")
directive.map { directive in
var problems = [Problem]()
XCTAssertEqual(Choice.directiveName, directive.name)
let choice = Choice(from: directive, source: nil, for: bundle, in: context, problems: &problems)
XCTAssertNotNil(choice)
XCTAssertTrue(problems.isEmpty)
choice.map { choice in
let expectedDump = """
Choice @1:1-7:2 isCorrect: true
├─ MarkupContainer (empty)
├─ ImageMedia @2:4-2:39 source: 'ResourceReference(bundleIdentifier: "org.swift.docc.example", path: "blah.png")' altText: 'blah'
└─ Justification @4:4-6:5
└─ MarkupContainer (1 element)
"""
XCTAssertEqual(expectedDump, choice.dump())
}
}
}
}
|