-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathRetryNetworkserviceTest.swift
128 lines (111 loc) · 4.18 KB
/
RetryNetworkserviceTest.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
//
// Copyright (C) 2017 DB Systel GmbH.
// DB Systel GmbH; Jürgen-Ponto-Platz 1; D-60329 Frankfurt am Main; Germany; http://www.dbsystel.de/
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
import XCTest
@testable import DBNetworkStack
class RetryNetworkserviceTest: XCTestCase {
var resource: Resource<Int> {
let request = URLRequest(path: "/train", baseURL: .defaultMock)
return Resource(request: request, parse: { _ in return 1})
}
func testRetryRequest_shouldRetry() async throws {
//Given
let errorCount = 2
let numberOfRetries = 2
let networkServiceMock = NetworkServiceMock()
for _ in (0..<errorCount) {
await networkServiceMock.schedule(failure: .unknownError)
}
await networkServiceMock.schedule(success: 1)
let retryService = RetryNetworkService(
networkService: networkServiceMock,
numberOfRetries: numberOfRetries,
idleTimeInterval: 0,
shouldRetry: { _ in
return true
}
)
//When
let result = try await retryService.request(resource)
//Then
XCTAssertEqual(result, 1)
}
// func testRetryRequestWhenCanceld_shouldNotRetry() throws {
// //Given
// let networkServiceMock = NetworkServiceMock()
// let retryService = RetryNetworkService(
// networkService: networkServiceMock,
// numberOfRetries: 2,
// idleTimeInterval: 0,
// shouldRetry: { _ in return true }
// )
// let task = Task {
// await retryService.requestResult(for: resource)
// }
// task.cancel()
//
// //When
//
// task?.cancel()
// try networkServiceMock.returnError(with: .unknownError)
//
// //Then
// XCTAssertNil(task)
// }
func testRetryRequest_moreErrorsThenRetryAttemps() async throws {
//Given
let networkServiceMock = NetworkServiceMock()
let retryService = RetryNetworkService(
networkService: networkServiceMock,
numberOfRetries: 3,
idleTimeInterval: 0,
shouldRetry: { _ in return true }
)
for _ in (0..<4) {
await networkServiceMock.schedule(failure: .unknownError)
}
//When
let result = await retryService.requestResult(for: resource)
//Then
if case .failure(.unknownError) = result {
} else {
XCTFail()
}
}
func testRetryRequest_shouldNotRetry() async throws {
//Given
var executedRetrys = 0
let networkServiceMock = NetworkServiceMock()
let retryService = RetryNetworkService(
networkService: networkServiceMock,
numberOfRetries: 3,
idleTimeInterval: 0,
shouldRetry: { _ in return true }
)
await networkServiceMock.schedule(failure: .unknownError)
//When
let result = await retryService.requestResult(for: resource)
//Then
// XCTAssertNil(task)
// XCTAssertNotNil(capturedError)
}
}