Chapter 5. Testing Network Code
Most apps in the App Store perform networking in one way or the other. Apple provides a great class for network requests—NSURLSession
. Its requests are asynchronous. This means that the response is delivered on a background thread. If that wasn't the case, the UI would freeze while the app waits for a response from the server.
The main topic of this chapter is how to test an asynchronous API. There are two ways to write tests for asynchronous API calls. Firstly, using asynchronous tests provided by the XCTest
framework. Secondly, using stubs as we did in the previous chapter.
Both methods have their advantages. Asynchronous tests let us test whether the web server is implemented as described in the documentation. In addition to this, the tests are closer to the implementation of the finished app and, therefore, are more likely to find bugs that would end up in the final version.
On the flip side, stubs let us develop the network layer of...