|
106 | 106 | after (.getTime (Date.))
|
107 | 107 | time (- after before)]
|
108 | 108 |
|
109 |
| - (is (instance? IllegalStateException result)) |
110 |
| - (is (< timeout time))))) |
| 109 | + (is (instance? IllegalStateException result)) |
| 110 | + (is (< timeout time))))) |
111 | 111 |
|
112 | 112 |
|
113 | 113 | (deftest retry?-test
|
114 |
| - (testing "Retry up to :max-retries times" |
115 |
| - (let [r0 (new-default-job "timeout-test" |
116 |
| - 3 |
117 |
| - (millis/<-seconds 0.25) |
118 |
| - (constantly false)) |
119 |
| - r1 (update-in r0 [:retries] inc) |
120 |
| - r2 (update-in r1 [:retries] inc) |
121 |
| - r3 (update-in r2 [:retries] inc)] |
| 114 | + (testing "Retry up to :max-retries times: " |
| 115 | + (testing "too many timeouts" |
| 116 | + (let [r0 (new-default-job "timeout-test" |
| 117 | + 3 |
| 118 | + (millis/<-seconds 0.25) |
| 119 | + (constantly false)) |
| 120 | + r1 (update-in r0 [:retries] inc) |
| 121 | + r2 (update-in r1 [:retries] inc) |
| 122 | + r3 (update-in r2 [:retries] inc)] |
| 123 | + |
| 124 | + (is (= :RETRY-TIMEOUT (retry? r0 TIMEOUT-ERROR))) |
| 125 | + (is (= :RETRY-TIMEOUT (retry? r1 TIMEOUT-ERROR))) |
| 126 | + (is (= :RETRY-TIMEOUT (retry? r2 TIMEOUT-ERROR))) |
| 127 | + (is (= :ABORT-MAX-RETRIES (retry? r3 TIMEOUT-ERROR)))) |
| 128 | + |
| 129 | + (testing "too many errors" |
| 130 | + (let [r0 (new-default-job "Too man errors test" |
| 131 | + 3 |
| 132 | + (millis/<-seconds 0.25) |
| 133 | + (constantly false)) |
| 134 | + r1 (update-in r0 [:retries] inc) |
| 135 | + r2 (update-in r1 [:retries] inc) |
| 136 | + r3 (update-in r2 [:retries] inc) |
| 137 | + e (Exception. "Something bad happened!")] |
| 138 | + |
| 139 | + (is (= :RETRY-FAILURE (retry? r0 e))) |
| 140 | + (is (= :RETRY-FAILURE (retry? r1 e))) |
| 141 | + (is (= :RETRY-FAILURE (retry? r2 e))) |
| 142 | + (is (= :ABORT-MAX-RETRIES (retry? r3 e))))))) |
122 | 143 |
|
123 |
| - (is (= :RETRY-TIMEOUT (retry? r0 TIMEOUT-ERROR))) |
124 |
| - (is (= :RETRY-TIMEOUT (retry? r1 TIMEOUT-ERROR))) |
125 |
| - (is (= :RETRY-TIMEOUT (retry? r2 TIMEOUT-ERROR))) |
126 |
| - (is (= :ABORT-MAX-RETRIES (retry? r3 TIMEOUT-ERROR))))) |
127 | 144 |
|
128 | 145 | (testing "Abort on fatal errors"
|
129 | 146 | (let [r0 (new-default-job "abort-test"
|
|
211 | 228 | (->RetrySettings 1 (millis/<-seconds 1) (millis/<-seconds 5) (constantly false))
|
212 | 229 | (constantly "Results!!!")))))
|
213 | 230 |
|
214 |
| - (testing "If at first you don't succeed, try, try again..." |
215 |
| - (let [attempts (atom 0) |
216 |
| - job-fn (fn [] |
217 |
| - (swap! attempts inc) |
218 |
| - (when (< @attempts 2) (throw (RuntimeException. "Not this time"))) |
219 |
| - "Finally--success!")] |
220 |
| - (is (= "Finally--success!" |
221 |
| - (retry-with-timeout |
222 |
| - "Persistance pays off" |
223 |
| - (->RetrySettings 3 (millis/<-seconds 1) (millis/<-seconds 5) (constantly false)) |
224 |
| - job-fn))) |
225 |
| - (is (= 2 @attempts))))) |
| 231 | + (testing "If at first you don't succeed, try, try again...: " |
| 232 | + (testing "With failures." |
| 233 | + (let [attempts (atom 0) |
| 234 | + start (System/currentTimeMillis) |
| 235 | + timeout-time (millis/<-seconds 1) |
| 236 | + pause-time (millis/<-seconds 5) |
| 237 | + expected-elapsed-time pause-time |
| 238 | + job-fn (fn [] |
| 239 | + (swap! attempts inc) |
| 240 | + (when (< @attempts 2) (throw (RuntimeException. "Not this time"))) |
| 241 | + "Finally--success!")] |
| 242 | + (is (= "Finally--success!" |
| 243 | + (retry-with-timeout |
| 244 | + "Persistance pays off" |
| 245 | + (->RetrySettings 3 timeout-time pause-time (constantly false)) |
| 246 | + job-fn))) |
| 247 | + (is (= 2 @attempts)) |
| 248 | + (is (<= expected-elapsed-time (- (System/currentTimeMillis) start))))) |
| 249 | + |
| 250 | + (testing "with timeouts." |
| 251 | + (let [attempts (atom 0) |
| 252 | + start (System/currentTimeMillis) |
| 253 | + timeout-time (millis/<-seconds 1) |
| 254 | + pause-time (millis/<-seconds 5) |
| 255 | + expected-elapsed-time (+ timeout-time pause-time) |
| 256 | + job-fn (fn [] |
| 257 | + (swap! attempts inc) |
| 258 | + (when (< @attempts 2) (Thread/sleep (+ timeout-time 500))) |
| 259 | + "Finally--success!")] |
| 260 | + (is (= "Finally--success!" |
| 261 | + (retry-with-timeout |
| 262 | + "Persistance pays off" |
| 263 | + (->RetrySettings 3 timeout-time pause-time (constantly false)) |
| 264 | + job-fn))) |
| 265 | + (is (= 2 @attempts)) |
| 266 | + (is (<= expected-elapsed-time (- (System/currentTimeMillis) start))))))) |
226 | 267 |
|
227 | 268 | (testing "Sad paths: "
|
228 | 269 | (testing "Taking too much time fails when abort?-fn is (constantly false)!"
|
|
243 | 284 | (Thread/sleep (millis/<-seconds 2))))))
|
244 | 285 | (is (= 4 @total-tries))))
|
245 | 286 |
|
| 287 | + (testing "Too many retries fails" |
| 288 | + (let [total-tries (atom 0)] |
| 289 | + (is (thrown? Exception |
| 290 | + (retry-with-timeout |
| 291 | + "Boom" |
| 292 | + (->RetrySettings 3 (millis/<-seconds 1) 50 (constantly false)) |
| 293 | + (fn [] |
| 294 | + (swap! total-tries inc) |
| 295 | + (throw (Exception.)))))) |
| 296 | + (is (= 4 @total-tries)))) |
| 297 | + |
246 | 298 | (testing "Fatal errors abort retrying"
|
247 | 299 | (let [total-tries (atom 0)]
|
248 |
| - (is (thrown? RuntimeException |
| 300 | + (is (thrown? Exception |
249 | 301 | (retry-with-timeout
|
250 | 302 | "Ooops..."
|
251 | 303 | (->RetrySettings 3 (millis/<-seconds 1) (millis/<-seconds 5) (constantly true))
|
252 | 304 | (fn []
|
253 | 305 | (swap! total-tries inc)
|
254 |
| - (throw (RuntimeException.)))))) |
| 306 | + (throw (Exception.)))))) |
255 | 307 | (is (= 1 @total-tries))))))
|
256 | 308 |
|
257 | 309 |
|
|
281 | 333 |
|
282 | 334 |
|
283 | 335 |
|
284 |
| -;(run-tests) |
| 336 | +(run-tests) |
0 commit comments