mirror of
https://github.com/apple/swift-argument-parser.git
synced 2026-06-06 20:18:23 +00:00
* add implementation of replacing(_:with:) * remove use of range(of:) * Consolidate foundation usage * Consolidate error to string logic * Clean up env a bit
54 lines
1.7 KiB
Swift
54 lines
1.7 KiB
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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#if os(macOS)
|
|
|
|
import XCTest
|
|
import ArgumentParserTestHelpers
|
|
@testable import ArgumentParser
|
|
|
|
final class CountLinesExampleTests: XCTestCase {
|
|
override func setUp() {
|
|
Platform.Environment[.columns] = nil
|
|
}
|
|
|
|
func testCountLines() throws {
|
|
guard #available(macOS 12, *) else { return }
|
|
let testFile = try XCTUnwrap(
|
|
Bundle.module.url(forResource: "CountLinesTest", withExtension: "txt"))
|
|
try AssertExecuteCommand(
|
|
command: "count-lines \(testFile.path)", expected: "20\n")
|
|
try AssertExecuteCommand(
|
|
command: "count-lines \(testFile.path) --prefix al", expected: "4\n")
|
|
}
|
|
|
|
func testCountLinesHelp() throws {
|
|
guard #available(macOS 12, *) else { return }
|
|
let helpText = """
|
|
USAGE: count-lines [<input-file>] [--prefix <prefix>] [--verbose]
|
|
|
|
ARGUMENTS:
|
|
<input-file> A file to count lines in. If omitted, counts the
|
|
lines of stdin.
|
|
|
|
OPTIONS:
|
|
--prefix <prefix> Only count lines with this prefix.
|
|
--verbose Include extra information in the output.
|
|
-h, --help Show help information.
|
|
|
|
|
|
"""
|
|
try AssertExecuteCommand(command: "count-lines -h", expected: helpText)
|
|
}
|
|
}
|
|
|
|
#endif
|