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
|
//===----------------------------------------------------------*- swift -*-===//
//
// This source file is part of the Swift Argument Parser open source project
//
// Copyright (c) 2020 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
//
//===----------------------------------------------------------------------===//
import XCTest
import ArgumentParserTestHelpers
import ArgumentParser
final class NestedCommandEndToEndTests: XCTestCase {
}
// MARK: Single value String
fileprivate struct Foo: ParsableCommand {
static var configuration =
CommandConfiguration(subcommands: [Build.self, Package.self])
@Flag(name: .short)
var verbose: Bool = false
struct Build: ParsableCommand {
@OptionGroup() var foo: Foo
@Argument()
var input: String
}
struct Package: ParsableCommand {
static var configuration =
CommandConfiguration(subcommands: [Clean.self, Config.self])
@Flag(name: .short)
var force: Bool = false
struct Clean: ParsableCommand {
@OptionGroup() var foo: Foo
@OptionGroup() var package: Package
}
struct Config: ParsableCommand {
@OptionGroup() var foo: Foo
@OptionGroup() var package: Package
}
}
}
fileprivate func AssertParseFooCommand<A>(_ type: A.Type, _ arguments: [String], file: StaticString = #file, line: UInt = #line, closure: (A) throws -> Void) where A: ParsableCommand {
AssertParseCommand(Foo.self, type, arguments, file: file, line: line, closure: closure)
}
extension NestedCommandEndToEndTests {
func testParsing_package() throws {
AssertParseFooCommand(Foo.Package.self, ["package"]) { package in
XCTAssertFalse(package.force)
}
AssertParseFooCommand(Foo.Package.Clean.self, ["package", "clean"]) { clean in
XCTAssertEqual(clean.foo.verbose, false)
XCTAssertEqual(clean.package.force, false)
}
AssertParseFooCommand(Foo.Package.Clean.self, ["package", "-f", "clean"]) { clean in
XCTAssertEqual(clean.foo.verbose, false)
XCTAssertEqual(clean.package.force, true)
}
AssertParseFooCommand(Foo.Package.Config.self, ["package", "-v", "config"]) { config in
XCTAssertEqual(config.foo.verbose, true)
XCTAssertEqual(config.package.force, false)
}
AssertParseFooCommand(Foo.Package.Config.self, ["package", "config", "-v"]) { config in
XCTAssertEqual(config.foo.verbose, true)
XCTAssertEqual(config.package.force, false)
}
AssertParseFooCommand(Foo.Package.Config.self, ["-v", "package", "config"]) { config in
XCTAssertEqual(config.foo.verbose, true)
XCTAssertEqual(config.package.force, false)
}
AssertParseFooCommand(Foo.Package.Config.self, ["package", "-f", "config"]) { config in
XCTAssertEqual(config.foo.verbose, false)
XCTAssertEqual(config.package.force, true)
}
AssertParseFooCommand(Foo.Package.Config.self, ["package", "config", "-f"]) { config in
XCTAssertEqual(config.foo.verbose, false)
XCTAssertEqual(config.package.force, true)
}
AssertParseFooCommand(Foo.Package.Config.self, ["package", "-v", "config", "-f"]) { config in
XCTAssertEqual(config.foo.verbose, true)
XCTAssertEqual(config.package.force, true)
}
AssertParseFooCommand(Foo.Package.Config.self, ["package", "-f", "config", "-v"]) { config in
XCTAssertEqual(config.foo.verbose, true)
XCTAssertEqual(config.package.force, true)
}
AssertParseFooCommand(Foo.Package.Config.self, ["package", "-vf", "config"]) { config in
XCTAssertEqual(config.foo.verbose, true)
XCTAssertEqual(config.package.force, true)
}
AssertParseFooCommand(Foo.Package.Config.self, ["package", "-fv", "config"]) { config in
XCTAssertEqual(config.foo.verbose, true)
XCTAssertEqual(config.package.force, true)
}
}
func testParsing_build() throws {
AssertParseFooCommand(Foo.Build.self, ["build", "file"]) { build in
XCTAssertEqual(build.foo.verbose, false)
XCTAssertEqual(build.input, "file")
}
}
func testParsing_fails() throws {
XCTAssertThrowsError(try Foo.parseAsRoot(["clean", "package"]))
XCTAssertThrowsError(try Foo.parseAsRoot(["config", "package"]))
XCTAssertThrowsError(try Foo.parseAsRoot(["package", "c"]))
XCTAssertThrowsError(try Foo.parseAsRoot(["package", "build"]))
XCTAssertThrowsError(try Foo.parseAsRoot(["package", "build", "clean"]))
XCTAssertThrowsError(try Foo.parseAsRoot(["package", "clean", "foo"]))
XCTAssertThrowsError(try Foo.parseAsRoot(["package", "config", "bar"]))
XCTAssertThrowsError(try Foo.parseAsRoot(["package", "clean", "build"]))
XCTAssertThrowsError(try Foo.parseAsRoot(["build"]))
XCTAssertThrowsError(try Foo.parseAsRoot(["build", "-f"]))
XCTAssertThrowsError(try Foo.parseAsRoot(["build", "--build"]))
XCTAssertThrowsError(try Foo.parseAsRoot(["build", "--build", "12"]))
XCTAssertThrowsError(try Foo.parseAsRoot(["-f", "package", "clean"]))
XCTAssertThrowsError(try Foo.parseAsRoot(["-f", "package", "config"]))
}
}
private struct Options: ParsableArguments {
@Option() var firstName: String?
}
private struct UniqueOptions: ParsableArguments {
@Option() var lastName: String?
}
private struct Super: ParsableCommand {
static var configuration: CommandConfiguration {
.init(subcommands: [Sub1.self, Sub2.self])
}
@OptionGroup() var options: Options
struct Sub1: ParsableCommand {
@OptionGroup() var options: Options
}
struct Sub2: ParsableCommand {
@OptionGroup() var options: UniqueOptions
}
}
extension NestedCommandEndToEndTests {
func testParsing_SharedOptions() throws {
AssertParseCommand(Super.self, Super.self, []) { sup in
XCTAssertNil(sup.options.firstName)
}
AssertParseCommand(Super.self, Super.self, ["--first-name", "Foo"]) { sup in
XCTAssertEqual("Foo", sup.options.firstName)
}
AssertParseCommand(Super.self, Super.Sub1.self, ["sub1"]) { sub1 in
XCTAssertNil(sub1.options.firstName)
}
AssertParseCommand(Super.self, Super.Sub1.self, ["sub1", "--first-name", "Foo"]) { sub1 in
XCTAssertEqual("Foo", sub1.options.firstName)
}
AssertParseCommand(Super.self, Super.Sub2.self, ["sub2", "--last-name", "Foo"]) { sub2 in
XCTAssertEqual("Foo", sub2.options.lastName)
}
}
}
|