Files
SwiftLint/Source/SwiftLintFramework/Rules/Lint/QuickDiscouragedCallRuleExamples.swift
T
Zev Eisenberg fcf848608e Add Inline test failure messages (#3040)
* Add Example wrapper in order to display test failures inline when running in Xcode.
* Stop using Swift 5.1-only features so we can compile on Xcode 10.2.
* Wrap strings in Example.
* Add Changelog entry.
* Wrap all examples in Example struct.
* Better and more complete capturing of line numbers.
* Fix broken test.
* Better test traceability.
* Address or disable linting warnings.
* Add documentation comments.
* Disable linter for a few cases.
* Limit mutability and add copy-and-mutate utility functions.
* Limit scope of mutability.
2020-02-02 10:35:37 +02: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()
}
}
}
""")
]
}