mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
71 lines
2.5 KiB
Swift
71 lines
2.5 KiB
Swift
//
|
|
// CyclomaticComplexityRuleTests.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by Mike Welles on 2/9/17.
|
|
// Copyright © 2017 Realm. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftLintFramework
|
|
import XCTest
|
|
|
|
class CyclomaticComplexityRuleTests: XCTestCase {
|
|
private lazy var complexSwitchExample: String = {
|
|
var example = "func switcheroo() {\n"
|
|
example += " switch foo {\n"
|
|
for i in (0...30) {
|
|
example += " case \(i): print(\"\(i)\")\n"
|
|
}
|
|
example += " }\n"
|
|
example += "}\n"
|
|
return example
|
|
}()
|
|
|
|
private lazy var complexIfExample: String = {
|
|
let nest = 22
|
|
var example = "func nestThoseIfs() {\n"
|
|
for i in (0...nest) {
|
|
let indent = String(repeating: " ", count: i + 1)
|
|
example += indent + "if false != true {\n"
|
|
example += indent + " print \"\\(i)\"\n"
|
|
}
|
|
|
|
for i in (0...nest).reversed() {
|
|
let indent = String(repeating: " ", count: i + 1)
|
|
example += indent + "}\n"
|
|
}
|
|
example += "}\n"
|
|
return example
|
|
}()
|
|
|
|
func testCyclomaticComplexity() {
|
|
verifyRule(CyclomaticComplexityRule.description, commentDoesntViolate: true, stringDoesntViolate: true)
|
|
}
|
|
|
|
func testIgnoresCaseStatementsConfigurationEnabled() {
|
|
let baseDescription = CyclomaticComplexityRule.description
|
|
let triggeringExamples = [complexIfExample]
|
|
let nonTriggeringExamples = baseDescription.nonTriggeringExamples + [complexSwitchExample]
|
|
|
|
let description = baseDescription.with(nonTriggeringExamples: nonTriggeringExamples)
|
|
.with(triggeringExamples: triggeringExamples)
|
|
|
|
verifyRule(description, ruleConfiguration: ["ignores_case_statements": true],
|
|
commentDoesntViolate: true, stringDoesntViolate: true)
|
|
}
|
|
|
|
func testIgnoresCaseStatementsConfigurationDisabled() {
|
|
let baseDescription = CyclomaticComplexityRule.description
|
|
let triggeringExamples = baseDescription.triggeringExamples + [complexSwitchExample]
|
|
let nonTriggeringExamples = baseDescription.nonTriggeringExamples
|
|
|
|
let description = baseDescription.with(nonTriggeringExamples: nonTriggeringExamples)
|
|
.with(triggeringExamples: triggeringExamples)
|
|
|
|
verifyRule(description, ruleConfiguration: ["ignores_case_statements": false],
|
|
commentDoesntViolate: true, stringDoesntViolate: true)
|
|
}
|
|
|
|
}
|