mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
15b285527a
* Short names for test modules * Lint plugins and `Package.swift` in integration tests * Simplify and merge file groups in Bazel * Move common functions to `TestHelpers`
77 lines
3.5 KiB
Swift
77 lines
3.5 KiB
Swift
@testable import SwiftLintBuiltInRules
|
|
import TestHelpers
|
|
import XCTest
|
|
|
|
final class TrailingCommaRuleTests: SwiftLintTestCase {
|
|
func testTrailingCommaRuleWithDefaultConfiguration() {
|
|
// Verify TrailingCommaRule with test values for when mandatory_comma is false (default).
|
|
let triggeringExamples = TrailingCommaRule.description.triggeringExamples +
|
|
[Example("class C {\n #if true\n func f() {\n let foo = [1, 2, 3↓,]\n }\n #endif\n}")]
|
|
verifyRule(TrailingCommaRule.description.with(triggeringExamples: triggeringExamples))
|
|
|
|
// Ensure the rule produces the correct reason string.
|
|
let failingCase = Example("let array = [\n\t1,\n\t2,\n]\n")
|
|
XCTAssertEqual(trailingCommaViolations(failingCase).first?.reason,
|
|
"Collection literals should not have trailing commas")
|
|
}
|
|
|
|
private static let triggeringExamples = [
|
|
Example("let foo = [1, 2,\n 3↓]\n"),
|
|
Example("let foo = [1: 2,\n 2: 3↓]\n"),
|
|
Example("let foo = [1: 2,\n 2: 3↓ ]\n"),
|
|
Example("struct Bar {\n let foo = [1: 2,\n 2: 3↓]\n}\n"),
|
|
Example("let foo = [1, 2,\n 3↓] + [4,\n 5, 6↓]\n"),
|
|
Example("let foo = [1, 2,\n 3↓ ]"),
|
|
Example("let foo = [\"אבג\", \"αβγ\",\n\"🇺🇸\"↓]\n"),
|
|
]
|
|
|
|
private static let nonTriggeringExamples = [
|
|
Example("let foo = []\n"),
|
|
Example("let foo = [:]\n"),
|
|
Example("let foo = [1, 2, 3,]\n"),
|
|
Example("let foo = [1, 2, 3, ]\n"),
|
|
Example("let foo = [1, 2, 3 ,]\n"),
|
|
Example("let foo = [1: 2, 2: 3, ]\n"),
|
|
Example("struct Bar {\n let foo = [1: 2, 2: 3,]\n}\n"),
|
|
Example("let foo = [Void]()\n"),
|
|
Example("let foo = [(Void, Void)]()\n"),
|
|
Example("let foo = [1, 2, 3]\n"),
|
|
Example("let foo = [1: 2, 2: 3]\n"),
|
|
Example("let foo = [1: 2, 2: 3 ]\n"),
|
|
Example("struct Bar {\n let foo = [1: 2, 2: 3]\n}\n"),
|
|
Example("let foo = [1, 2, 3] + [4, 5, 6]\n"),
|
|
]
|
|
|
|
private static let corrections: [Example: Example] = {
|
|
let fixed = triggeringExamples.map { $0.with(code: $0.code.replacingOccurrences(of: "↓", with: ",")) }
|
|
var result: [Example: Example] = [:]
|
|
for (triggering, correction) in zip(triggeringExamples, fixed) {
|
|
result[triggering] = correction
|
|
}
|
|
return result
|
|
}()
|
|
|
|
private let mandatoryCommaRuleDescription = TrailingCommaRule.description
|
|
.with(nonTriggeringExamples: TrailingCommaRuleTests.nonTriggeringExamples)
|
|
.with(triggeringExamples: TrailingCommaRuleTests.triggeringExamples)
|
|
.with(corrections: TrailingCommaRuleTests.corrections)
|
|
|
|
func testTrailingCommaRuleWithMandatoryComma() {
|
|
// Verify TrailingCommaRule with test values for when mandatory_comma is true.
|
|
let ruleDescription = mandatoryCommaRuleDescription
|
|
let ruleConfiguration = ["mandatory_comma": true]
|
|
|
|
verifyRule(ruleDescription, ruleConfiguration: ruleConfiguration)
|
|
|
|
// Ensure the rule produces the correct reason string.
|
|
let failingCase = Example("let array = [\n\t1,\n\t2\n]\n")
|
|
XCTAssertEqual(trailingCommaViolations(failingCase, ruleConfiguration: ruleConfiguration).first?.reason,
|
|
"Multi-line collection literals should have trailing commas")
|
|
}
|
|
|
|
private func trailingCommaViolations(_ example: Example, ruleConfiguration: Any? = nil) -> [StyleViolation] {
|
|
let config = makeConfig(ruleConfiguration, TrailingCommaRule.identifier)!
|
|
return violations(example, config: config)
|
|
}
|
|
}
|