Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nsoojin/bookstore-ios
ο£Ώ Sample iOS App - A collection of examples and patterns for Unit Testing, UI Testing, handling Result/Optionals, writing documentation, and more. Details in README.
https://github.com/nsoojin/bookstore-ios
ios ios-app ios-application-testing ios-code-coverage ios-demo ios-design-patterns ios-develop-tips ios-learning ios-sample ios-swift open-api stub-networking swift swift-documentation swift-framework ui-testing unit-testing xctest xcuitest
Last synced: 5 days ago
JSON representation
ο£Ώ Sample iOS App - A collection of examples and patterns for Unit Testing, UI Testing, handling Result/Optionals, writing documentation, and more. Details in README.
- Host: GitHub
- URL: https://github.com/nsoojin/bookstore-ios
- Owner: nsoojin
- License: mit
- Created: 2019-08-12T10:32:49.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-03T19:51:21.000Z (about 3 years ago)
- Last Synced: 2024-10-01T00:03:50.038Z (about 1 month ago)
- Topics: ios, ios-app, ios-application-testing, ios-code-coverage, ios-demo, ios-design-patterns, ios-develop-tips, ios-learning, ios-sample, ios-swift, open-api, stub-networking, swift, swift-documentation, swift-framework, ui-testing, unit-testing, xctest, xcuitest
- Language: Swift
- Homepage:
- Size: 13.6 MB
- Stars: 234
- Watchers: 11
- Forks: 40
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# BookStore
### π [νκΈ λ²μ ](https://soojin.ro/blog/bookstore-ios-readme)
See new releases and search for programming books from [IT Bookstore API](https://api.itbook.store)
This is a sample app to practice using `Result` type, stubbing network request for unit tests, separating functionalities into frameworks, and writing Swift documentation.
### How to run
```
> cd BookStore
> open BookStore.xcodeproj
```Run!
# Contents
- [App Features](https://github.com/nsoojin/BookStore-iOS#app-features)
- [`Result` type in Swift 5](https://github.com/nsoojin/BookStore-iOS#result-type-in-swift-5)
- [Stubbing Network Requests for Unit Tests](https://github.com/nsoojin/BookStore-iOS#stubbing-network-requests-for-unit-tests)
- [UI Testing with Stubbed Network Data](https://github.com/nsoojin/BookStore-iOS#ui-testing-with-stubbed-network-data)
- [Using Frameworks for independent functionalities](https://github.com/nsoojin/BookStore-iOS#using-frameworks-for-independent-functionalities)
- [Writing a documentation comment](https://github.com/nsoojin/BookStore-iOS#writing-a-documentation-comment)
- [Getting Rid of IUOs](https://github.com/nsoojin/BookStore-iOS#getting-rid-of-iuos)
## App Features
### What's New
A simple `UITableView` with cells and modal presentation for a detailed page.
### Search
1. As a user types in the keyword, the search text is "debounced" for a fraction of second for better performance and user experience. See [Debouncer](https://github.com/nsoojin/BookStore/blob/3a3e91f903e5a77ebdcafd53803fd3edad0dde65/BookStoreKit/Utils/Debouncer.swift#L11).
2. Search results are paginated and provides infinite scroll.
## `Result` type in Swift 5
Out of the box, you have to switch on the `Result` instance to access the underlying success instance or the error instance.
```Swift
switch result {
case .success(let response):
//do something with the response
case .failure(let error):
//handle error
}
```However, I think switch statements are too wordy. I added [`success`](https://github.com/nsoojin/BookStore/blob/5f3d7d85503fd1de51d04b0286653a3578a7125a/BookStore/Extensions/Result%20%2B%20Extensions.swift#L25) and [`catch`](https://github.com/nsoojin/BookStore/blob/5f3d7d85503fd1de51d04b0286653a3578a7125a/BookStore/Extensions/Result%20%2B%20Extensions.swift#L34) method to `Result` type. So it can be chained like this.
```Swift
searchResult.success { response in
//do something with the response
}.catch { error in
//handle error
}
```Even cleaner, like this.
```Swift
result.success(handleSuccess)
.catch(handleError)
func handleSuccess(_ result: SearchResult) { ... }
func handleError(_ error: Error) { ... }
```## Stubbing Network Requests for Unit Tests
Generally, it is not a good idea to rely on the actual network requests for unit tests because it adds too much dependency on tests. One way to stub networking is to subclass `URLProtocol`.
### 1. Subclass `URLProtocol`
See [`MockURLProtocol`](https://github.com/nsoojin/BookStore/blob/master/BookStoreKitTests/MockAPI/MockURLProtocol.swift)
### 2. Configure `URLSession` with your mock `URLProtocol`
```Swift
let config = URLSessionConfiguration.ephemeral
config.protocolClasses = [MockURLProtocol.self]//Use this URLSession instance to make requests.
let session = URLSession(configuration: config)
```### 4. Use the configured `URLSession` instance just as you would.
```Swift
session.dataTask(with: urlRequest) { (data, response, error) in
//Stubbed response
}.resume()
```## UI Testing with Stubbed Network Data
The above method(as well as the famous [OHHTTPStubs](https://github.com/AliSoftware/OHHTTPStubs)) doesn't work for UI testing because the test bundle and the app bundle (XCUIApplication) are loaded in separate processes. By using [Swifter](https://github.com/httpswift/swifter), you can run a local http server on the simulator.
First, change the API endpoints during UI testing with launchArguments in your hosting app.
```swift
//In XCTestCase,
override func setUp() {
app = XCUIApplication()
app.launchArguments = ["-uitesting"]
}//In AppDelegate's application(_:didFinishLaunchingWithOptions:)
if ProcessInfo.processInfo.arguments.contains("-uitesting") {
BookStoreConfiguration.shared.setBaseURL(URL(string: "http://localhost:8080")!)
}
```Then stub the network and test the UI with it.
```swift
let server = HttpServer()func testNewBooksNormal() {
do {
let path = try TestUtil.path(for: normalResponseJSONFilename, in: type(of: self))
server[newBooksPath] = shareFile(path)
try server.start()
app.launch()
} catch {
XCTAssert(false, "Swifter Server failed to start.")
}
XCTContext.runActivity(named: "Test Successful TableView Screen") { _ in
XCTAssert(app.tables[tableViewIdentifier].waitForExistence(timeout: 3))
XCTAssert(app.tables[tableViewIdentifier].cells.count > 0)
XCTAssert(app.staticTexts["9781788476249"].exists)
XCTAssert(app.staticTexts["$44.99"].exists)
}
}
```## Using Frameworks for independent functionalities
Separating your app's functions into targets has several advantages. It forces you to care about dependencies, and it is good for unit tests since features are sandboxed. However, it may slow down the app launch (by little) due to framework loading.
`BookStoreKit` is responsible for fetching and searching books data from [IT Bookstore API](https://api.itbook.store).
`Networking` is a wrapper around URLSession for making HTTP requests and parsing response.
## Writing a documentation comment
[Swift's API Design Guidelines](https://swift.org/documentation/api-design-guidelines/#fundamentals) suggest you write a documentation comment for every declaration. Writing one can have an impact on the design.
### 1. Write
Reference this [document](https://developer.apple.com/library/archive/documentation/Xcode/Reference/xcode_markup_formatting_ref/index.html) for markup formatting.
### 2. Check out the result
In Xcode's autocompletion
and Show Quick Help (option + click)
## Getting Rid of IUOs
IMHO Implictly unwrapped optional is a potential threat to code safety and should be avoided as much as possible if not altogether. An example of two methods to get rid of them from where they are commonly used.
### Make IBOutlets Optional
IBOutlets are IUOs by Apple's default. However, you can change that to Optional types. You may worry that making IBOutlets Optionals may cause too many if lets or guards, but that concern may just be overrated. IBOutlets are mostly used to set values on them, so optional chaining is sufficient. In just few cases where unwrapping is added, I will embrace them for additional safety of my code.
### Using lazy instantiation
For the properties of UIViewController subclass, IUO can be useful but it's still dangerous. Instead, I use [`unspecified`](https://github.com/nsoojin/BookStore/blob/e27ea7252189e9f7ed2b7a9494334ccab9ce801c/BookStore/Extensions/Unspecified.swift#L11). It generates a crash upon class/struct usage so it can be spotted fast during development, and most importantly no more IUOs.
```swift
//Inside a viewcontroller
lazy var bookStore: BookStoreService = unspecified()
```