Autofixtures is a utility library that helps to create models for your test suite. With Autofixtures you dont need to write boilerplate code to create your models.
Spend less time writing boring code and more time writing code that matters.
Autofixtures is based on Decodable protocol, and the fact that Swift compiler automatically synthesizes initialisers. If your model conforms to Decodable it already supports Autofixtures.
During testing or development, we usually need to create mock models (fixtures) to pass them as arguments.
The models tend to become very complex and cumbersome to create every time, so you may come up with a static method to create models.
For example:
struct User {
let id: Int
let name: String
let email: String
struct Address {
let road: String
let building: String
}
let address: Address
}
You can come up with something like this.
extension User {
static func fixture(id: Int = 11,
name: String = "fix",
email: String = "fix",
address: Address = .fixture()) -> User {
return User(id: id,
name: name,
email: email,
address: address)
}
}
extension Address {
static func fixture(road: String = "fix",
building: String = "fix") -> Address {
return Address(road: road,
building: building)
}
}
This is much better than creating models inline every time, but it's a lot of boilerplate code, that needs to be compiled and maintained every time we change our models.
With Autofixtures, all you need to do is conform your model to Decodable (if it doesn't yet), and import Autofixtures
extension User: Decodable {}
let fixture = User.fix
To set a value
extension User: Decodable {}
let fixture = User.fix.set(\.address.road, "Abbey Road")
Conform your model to Autofixtures. Override protocol and provide a new default.
Use .fixDecoded static var to avoid infinite recursion.
extension User: Override {
static var fixOverride = User.fixDecoded.set(\.address.road, "Abbey Road")
}
let fixture = User.fix
CaseIterable enums return the first case from .fix, but they need to conform to Override
enum Enum: String, Decodable, CaseIterable {
case one
case two
}
extension Enum: Override {}
Enums with associated values require to provide the override.
enum EnumWithValue: Decodable, Equatable, Override {
case value(Simple)
static let fixOverride: EnumWithValue = .value(.fix)
}
Optionals return nil by default.
/// Closure wrapper for decodable support
struct Closure<A,B>: Decodable {
var closure: (A) -> B
init(from decoder: Decoder) throws {
self.closure = { a in fatalError() }
}
}
/// Example of setting up default for closure
extension Closure: Override where A == Void, B == Int {
static var fixOverride: Closure<(), Int> = .fixDecoded
.set(\.closure, { return 9 })
}
You can add Autofixtures to an Xcode project by adding it as a package dependency.
If you want to use Autofixtures in a SwiftPM project, it's as simple as adding it to a dependencies
clause in your Package.swift
:
dependencies: [
.package(url: "https://github.com/kkivan/autofixtures", from: "0.0.5")
]