Skip to content

Commit f2a6754

Browse files
authored
Merge pull request #29 from WeTransfer/feature/onrequest
Add an onRequest completion callback
2 parents 63bd9fa + e70e3a9 commit f2a6754

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Changelog.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
## Changelog
22

33
### Next
4-
- A new completion callback can be set on `Mock` to use for expectation fulfilling once a `Mock` is used.
4+
- A new completion callback can be set on `Mock` to use for expectation fulfilling once a `Mock` is completed.
5+
- A new onRequest callback can be set on `Mock` to use for expectation fulfilling once a `Mock` is requested.
56
- Updated to Swift 5.0
67
- Only dispatch to the background queue if needed
78
- Correctly handle cancellation of delayed responses

Sources/Mock.swift

+4-1
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,11 @@ public struct Mock: Equatable {
7979
/// Add a delay to a certain mock, which makes the response returned later.
8080
public var delay: DispatchTimeInterval?
8181

82-
/// The callback which will be executed everytime this `Mock` was used. Can be used within unit tests for validating that a request has been executed.
82+
/// The callback which will be executed everytime this `Mock` was completed. Can be used within unit tests for validating that a request has been executed.
8383
public var completion: (() -> Void)?
84+
85+
/// The callback which will be executed everytime this `Mock` was started. Can be used within unit tests for validating that a request has been started.
86+
public var onRequest: (() -> Void)?
8487

8588
private init(url: URL? = nil, ignoreQuery: Bool = false, dataType: DataType, statusCode: Int, data: [HTTPMethod: Data], additionalHeaders: [String: String] = [:], fileExtensions: [String]? = nil) {
8689
self.url = url ?? URL(string: "https://mocked.wetransfer.com/\(dataType.rawValue)/\(statusCode)/")!

Sources/MockingURLProtocol.swift

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ public final class MockingURLProtocol: URLProtocol {
3030
return
3131
}
3232

33+
mock.onRequest?()
34+
3335
guard let delay = mock.delay else {
3436
finishRequest(for: mock, data: data, response: response)
3537
return

0 commit comments

Comments
 (0)