-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new
final_test_case
rule (#5396)
- Loading branch information
1 parent
9ed8020
commit ddaf3d2
Showing
6 changed files
with
100 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
87 changes: 87 additions & 0 deletions
87
Source/SwiftLintBuiltInRules/Rules/Performance/FinalTestCaseRule.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
import SwiftLintCore | ||
import SwiftSyntax | ||
|
||
@SwiftSyntaxRule | ||
struct FinalTestCaseRule: SwiftSyntaxCorrectableRule, OptInRule { | ||
var configuration = FinalTestCaseConfiguration() | ||
|
||
static var description = RuleDescription( | ||
identifier: "final_test_case", | ||
name: "Final Test Case", | ||
description: "Test cases should be final", | ||
kind: .performance, | ||
nonTriggeringExamples: [ | ||
Example("final class Test: XCTestCase {}"), | ||
Example("open class Test: XCTestCase {}"), | ||
Example("public final class Test: QuickSpec {}"), | ||
Example("class Test: MyTestCase {}"), | ||
Example("struct Test: MyTestCase {}", configuration: ["test_parent_classes": "MyTestCase"]) | ||
], | ||
triggeringExamples: [ | ||
Example("class ↓Test: XCTestCase {}"), | ||
Example("public class ↓Test: QuickSpec {}"), | ||
Example("class ↓Test: MyTestCase {}", configuration: ["test_parent_classes": "MyTestCase"]) | ||
], | ||
corrections: [ | ||
Example("class ↓Test: XCTestCase {}"): | ||
Example("final class Test: XCTestCase {}"), | ||
Example("internal class ↓Test: XCTestCase {}"): | ||
Example("internal final class Test: XCTestCase {}") | ||
] | ||
) | ||
|
||
func makeRewriter(file: SwiftLintFile) -> (some ViolationsSyntaxRewriter)? { | ||
Rewriter( | ||
configuration: configuration, | ||
locationConverter: file.locationConverter, | ||
disabledRegions: disabledRegions(file: file) | ||
) | ||
} | ||
} | ||
|
||
private extension FinalTestCaseRule { | ||
final class Visitor: ViolationsSyntaxVisitor<ConfigurationType> { | ||
override func visitPost(_ node: ClassDeclSyntax) { | ||
if node.isNonFinalTestClass(parentClasses: configuration.testParentClasses) { | ||
violations.append(node.name.positionAfterSkippingLeadingTrivia) | ||
} | ||
} | ||
} | ||
|
||
final class Rewriter: ViolationsSyntaxRewriter { | ||
private let configuration: FinalTestCaseConfiguration | ||
|
||
init(configuration: FinalTestCaseConfiguration, | ||
locationConverter: SourceLocationConverter, | ||
disabledRegions: [SourceRange]) { | ||
self.configuration = configuration | ||
super.init(locationConverter: locationConverter, disabledRegions: disabledRegions) | ||
} | ||
|
||
override func visit(_ node: ClassDeclSyntax) -> DeclSyntax { | ||
var newNode = node | ||
if node.isNonFinalTestClass(parentClasses: configuration.testParentClasses) { | ||
correctionPositions.append(node.name.positionAfterSkippingLeadingTrivia) | ||
let finalModifier = DeclModifierSyntax(name: .keyword(.final)) | ||
newNode = | ||
if node.modifiers.isEmpty { | ||
node | ||
.with(\.modifiers, [finalModifier.with(\.leadingTrivia, node.classKeyword.leadingTrivia)]) | ||
.with(\.classKeyword.leadingTrivia, .space) | ||
} else { | ||
node | ||
.with(\.modifiers, node.modifiers + [finalModifier.with(\.trailingTrivia, .space)]) | ||
} | ||
} | ||
return super.visit(newNode) | ||
} | ||
} | ||
} | ||
|
||
private extension ClassDeclSyntax { | ||
func isNonFinalTestClass(parentClasses: Set<String>) -> Bool { | ||
inheritanceClause.containsInheritedType(inheritedTypes: parentClasses) | ||
&& !modifiers.contains(keyword: .open) | ||
&& !modifiers.contains(keyword: .final) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters