Quick, Nimble 너희들 너무 좋잖니...
Quick은 TDD 스펙을 쉽게 작성하기 위한 오픈소스 라이브러리이고 Nimble은 결과에 대한 표현식을 쉽게 작성하기 위한 오픈소스 라이브러리다.
Quick과 Nimble을 이용 해 유닛 테스트 코드를 작성 해 보자.
import Quick
@testable import RibsDog
class LoggedInInteractorTests: QuickSpec {
override func spec() {
// Given
describe("LoggedIninteractor 테스트") {
beforeEach {
// prepare
}
// When
context("액티브를 호출하면") {
// Then
it("내부 변수 초기화가 되었는지 확인 해야 함.") {
}
}
}
// Given
describe("LoggedIninteractor 테스트") {
beforeEach {
// prepare
}
// When
context("requestStart 호출하면") {
// Then
it("TicTacToe로 라우팅 돼야 함") {
}
}
}
}
}
Nimble은 테스트 결과 값의 대한 유효성 검사를 진행한다.
Nimble은 매칭, 타입체크, 비교, 예외 등등 다양한 유효성 검사 기능을 제공한다.
Built-in Matcher Functions
expect(1).to(beAKindOf(Int.self))
expect("turtle").to(beAKindOf(String.self))
expect(1).to(beAnInstanceOf(Int.self))
expect("turtle").to(beAnInstanceOf(String.self))
Equivalence
expect(actual).to(equal(expected))
expect(actual).toNot(equal(expected))
Identity
// expect(actual) === expected
expect(actual).to(beIdenticalTo(expected))
// expect(actual) !== expected
expect(actual).toNot(beIdenticalTo(expected))
Comparisons
// expect(actual) < expected
expect(actual).to(beLessThan(expected))
// expect(actual) <= expected
expect(actual).to(beLessThanOrEqualTo(expected))
Types/Classes
expect(instance).to(beAnInstanceOf(aClass))
expect(instance).to(beAKindOf(aClass))
Truthiness
expect(actual).to(beTrue())
expect(actual).to(beFalse())
expect(actual).to(beNil())
Swift Assertions
expect { try somethingThatThrows() }.to(throwAssertion())
expect { () -> Void in fatalError() }.to(throwAssertion())
expect { throw NSError(domain: "test", code: 0, userInfo: nil) }.toNot(throwAssertion())
Swift Error Handling
expect { try somethingThatThrows() }.to(throwError { (error: Error) in
expect(error._domain).to(equal(NSCocoaErrorDomain))
})
expect { try somethingThatThrows() }.to(throwError(errorType: NimbleError.self))
Exceptions
expect(actual).to(raiseException(named: name))
expect { exception.raise() }.to(raiseException { (exception: NSException) in
expect(exception.name).to(beginWith("a r"))
})
Collection Membership
expect(["whale", "dolphin", "starfish"]).to(contain("dolphin", "starfish"))
expect(actual).to(beEmpty())
Strings
expect(actual).to(contain(substring))
expect(actual).to(match(expected))
Collection Elements
expect([1, 2, 3, 4]).to(allPass { $0! < 5 })
expect([1, 2, 3, 4]).to(allPass(beLessThan(5)))
Collection Count
expect(actual).to(haveCount(expected))
expect(actual).notTo(haveCount(expected))
Notifications
let testNotification = Notification(name: Notification.Name("Foo"), object: nil)
expect {
NotificationCenter.default.post(testNotification)
}.to(postNotifications(equal([testNotification])))
Matching a value to any of a group of matchers
expect(actual).to(satisfyAnyOf(beLessThan(10), beGreaterThan(20)))
expect(6).to(satisfyAnyOf(equal(2), equal(3), equal(4), equal(5), equal(6), equal(7)))
Custom Validation
expect({
guard case .enumCaseWithAssociatedValueThatIDontCareAbout = actual else {
return .failed(reason: "wrong enum case")
}
return .succeeded
}).to(succeed())
class LoggedInInteractorTests: QuickSpec {
override func spec() {
// Given
var interactor: LoggedInInteractor!
var listener: LoggedInListenerMock!
var router: LoggedInRouterMock!
describe("LoggedIninteractor 테스트") {
beforeEach {
// prepare
interactor = LoggedInInteractor()
listener = LoggedInListenerMock()
interactor.listener = listener
router = LoggedInRouterMock(interactor: interactor)
interactor.router = router
}
// When
context("requestStart 호출하면") {
// Then
it("TicTacToe로 라우팅 돼야 함") {
interactor.requestStart()
expect(router.setRouteToTicTacToeCount).to(equal(1))
}
}
}
}
}