mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
64 lines
2.7 KiB
Swift
64 lines
2.7 KiB
Swift
@testable import SwiftLintBuiltInRules
|
|
import TestHelpers
|
|
|
|
final class TypeNameRuleTests: SwiftLintTestCase {
|
|
func testTypeNameWithExcluded() {
|
|
let baseDescription = TypeNameRule.description
|
|
let nonTriggeringExamples = baseDescription.nonTriggeringExamples + [
|
|
Example("class apple {}"),
|
|
Example("struct some_apple {}"),
|
|
Example("protocol test123 {}"),
|
|
]
|
|
let triggeringExamples = baseDescription.triggeringExamples + [
|
|
Example("enum ap_ple {}"),
|
|
Example("typealias appleJuice = Void"),
|
|
]
|
|
let description = baseDescription.with(nonTriggeringExamples: nonTriggeringExamples,
|
|
triggeringExamples: triggeringExamples)
|
|
verifyRule(description, ruleConfiguration: ["excluded": ["apple", "some.*", ".*st\\d+.*"]])
|
|
}
|
|
|
|
func testTypeNameWithAllowedSymbols() {
|
|
let baseDescription = TypeNameRule.description
|
|
let nonTriggeringExamples = baseDescription.nonTriggeringExamples + [
|
|
Example("class MyType$ {}"),
|
|
Example("struct MyType$ {}"),
|
|
Example("enum MyType$ {}"),
|
|
Example("typealias Foo$ = Void"),
|
|
Example("protocol Foo {\n associatedtype Bar$\n }"),
|
|
]
|
|
|
|
let description = baseDescription.with(nonTriggeringExamples: nonTriggeringExamples)
|
|
verifyRule(description, ruleConfiguration: ["allowed_symbols": ["$"]])
|
|
}
|
|
|
|
func testTypeNameWithAllowedSymbolsAndViolation() {
|
|
let baseDescription = TypeNameRule.description
|
|
let triggeringExamples = [
|
|
Example("class ↓My_Type$ {}")
|
|
]
|
|
|
|
let description = baseDescription.with(triggeringExamples: triggeringExamples)
|
|
verifyRule(description, ruleConfiguration: ["allowed_symbols": ["$", "%"]])
|
|
}
|
|
|
|
func testTypeNameWithIgnoreStartWithLowercase() {
|
|
let baseDescription = TypeNameRule.description
|
|
let triggeringExamplesToRemove = [
|
|
Example("private typealias ↓foo = Void"),
|
|
Example("class ↓myType {}"),
|
|
Example("struct ↓myType {}"),
|
|
Example("enum ↓myType {}"),
|
|
]
|
|
let nonTriggeringExamples = baseDescription.nonTriggeringExamples +
|
|
triggeringExamplesToRemove.removingViolationMarkers()
|
|
let triggeringExamples = baseDescription.triggeringExamples
|
|
.filter { !triggeringExamplesToRemove.contains($0) }
|
|
|
|
let description = baseDescription.with(nonTriggeringExamples: nonTriggeringExamples)
|
|
.with(triggeringExamples: triggeringExamples)
|
|
|
|
verifyRule(description, ruleConfiguration: ["validates_start_with_lowercase": "off"])
|
|
}
|
|
}
|