SwiftNIOMock
A web server based on SwiftNIO designed to be used as a mock server in UI automation tests.
When running UI tests against real server several issues can come along: network can be unstable, content on the remote server can change, some of the test scenarios may require actions in some external system, and in general making network calls slows down all the tests.
SwiftNIOMock aims to address these issues by providing a mock web server implementation that runs on the localhost
and which app should access instead of a real server when running under UI test. Unlike other solutions like registering custom URLProtocol
using mock server requires only switching the app to the localhost
and gives you much more flexibility and control as the server is controlled by the test and you can change its state from within the test scenarios.
SwiftNIOMock supports three common scenarios:
-
redirect requests to the real service using
redirect
middleware. This can be used for logging purposes which can make debugging easier as all the network logs will be in the console log of the test runner process -
mock endpoints using
router
middleware. This is useful when you need to have more control over the state of the mock server and allows you to completely mock out all network requests the app makes (although it can be used along withredirect
middleware). This is usually needed when tests scenarios require actions in some external systems. When you control the state of the server completely you can easily fake such actions -
record & replay network calls using
redirect
middleware provided with the implementation ofURLSession
that can record and replay requests (using Vinyl or any other similar implementation). This is useful to ensure that tests receive the same data between runs and aims to guard against changes on the remote server that are out of your control
Usage
In the test create an instance of the server and start it in the setUp
method and provide it with a middleware to handle requests. In the tearDown
method stop the server.
override func setUp() {
server = Server(port: 8080, handler: <#Middleware#>)
try! server.start()
}
override func tearDown() {
try! server.stop()
server = nil
}
A middleware is a function that is based on an incoming request can modify a response.
typealias Middleware = (
_ request: Server.HTTPHandler.Request,
_ response: Server.HTTPHandler.Response,
_ next: @escaping () -> Void
) -> Void
When middleware function is done with response it should call the next
closure (it's fine to call it asynchronously) that is passed to it to return control to the server. You can write your own middleware or use those provided by SwiftNIOMock, which are redirect
, router
and delay
. Here is an example of a simple middleware that echoes back any incoming request:
func echo(
request: Server.HTTPHandler.Request,
response: Server.HTTPHandler.Response,
next: @escaping () -> Void
) {
response.statusCode = .ok
response.body = request.body
next()
}
redirect
middleware allows you to redirect incoming requests and intercept responses. It also accepts an instance of URLSession
(URLSession.shared
session by default) that it will use to perform a request, which allows it to record & replay all requests. Check out SwiftNIOMockExampleUITests.swift
to see the example of how to use SwiftNIOMock in record & replay mode powered by Vinyl.
func redirect(
session: URLSession = URLSession.shared,
request override: @escaping (Server.HTTPHandler.Request) -> Server.HTTPHandler.Request,
response intercept: @escaping (Server.HTTPHandler.Response) -> Void = { _ in }
) -> Middleware
router
middleware allows you to return arbitrary middleware based on a request, i.e. its method and path. If request can't be handled a fallback middleware passed as notFound
parameter will be used.
func router(
route: @escaping (Server.HTTPHandler.Request) -> Middleware?,
notFound: @escaping Middleware
) -> Middleware
To see an example of usage SwiftNIOMock in UI tests check SwiftNIOMockExample.
Installation
You can install SwiftNIOMock with CocoaPods (1.6.0.beta.2) or Swift Package Manager