Files
SwiftLint/Source/SwiftLintFramework/Rules/Lint/QuickDiscouragedCallRuleExamples.swift
T
Paul Taykalo 1b3e9945af Fix inconsistency in operator_usage_whitespace rule (#3388)
This Fixes case when the right part of the expression is an array or a string
Previously, strings and comments tokens were ignored.
In the current implementation, matching done first and then those are filtered if the operator is within the string token
2020-11-07 23:16:44 -05:00

284 lines
7.1 KiB
Swift

// swiftlint:disable type_body_length
internal struct QuickDiscouragedCallRuleExamples {
static let nonTriggeringExamples: [Example] = [
Example("""
class TotoTests: QuickSpec {
override func spec() {
describe("foo") {
beforeEach {
let foo = Foo()
foo.toto()
}
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
describe("foo") {
beforeEach {
let foo = Foo()
foo.toto()
}
afterEach {
let foo = Foo()
foo.toto()
}
describe("bar") {
}
context("bar") {
}
it("bar") {
let foo = Foo()
foo.toto()
}
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
describe("foo") {
itBehavesLike("bar")
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
describe("foo") {
it("does something") {
let foo = Foo()
foo.toto()
}
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
context("foo") {
afterEach { toto.append(foo) }
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
xcontext("foo") {
afterEach { toto.append(foo) }
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
xdescribe("foo") {
afterEach { toto.append(foo) }
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
describe("foo") {
xit("does something") {
let foo = Foo()
foo.toto()
}
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
fcontext("foo") {
afterEach { toto.append(foo) }
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
fdescribe("foo") {
afterEach { toto.append(foo) }
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
describe("foo") {
fit("does something") {
let foo = Foo()
foo.toto()
}
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
fitBehavesLike("foo")
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
xitBehavesLike("foo")
}
}
""")
]
static let triggeringExamples: [Example] = [
Example("""
class TotoTests {
override func spec() {
describe("foo") {
let foo = Foo()
}
}
}
class TotoTests: QuickSpec {
override func spec() {
describe("foo") {
let foo = ↓Foo()
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
describe("foo") {
let foo = ↓Foo()
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
describe("foo") {
context("foo") {
let foo = ↓Foo()
}
context("bar") {
let foo = ↓Foo()
↓foo.bar()
it("does something") {
let foo = Foo()
foo.toto()
}
}
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
describe("foo") {
context("foo") {
context("foo") {
beforeEach {
let foo = Foo()
foo.toto()
}
it("bar") {
}
context("foo") {
let foo = ↓Foo()
}
}
}
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
context("foo") {
let foo = ↓Foo()
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
sharedExamples("foo") {
let foo = ↓Foo()
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
describe("foo") {
↓foo()
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
context("foo") {
↓foo()
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
sharedExamples("foo") {
↓foo()
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
xdescribe("foo") {
let foo = ↓Foo()
}
fdescribe("foo") {
let foo = ↓Foo()
}
}
}
"""),
Example("""
class TotoTests: QuickSpec {
override func spec() {
xcontext("foo") {
let foo = ↓Foo()
}
fcontext("foo") {
let foo = ↓Foo()
}
}
}
""")
]
}