|
7 | 7 | [clj-foundation.data :refer [any?]]
|
8 | 8 | [clj-foundation.patterns :as p]
|
9 | 9 | [clj-foundation.millis :as millis])
|
10 |
| - (:import [java.util Date])) |
| 10 | + (:import [java.util Date] |
| 11 | + [clojure.lang ExceptionInfo])) |
11 | 12 |
|
12 | 13 |
|
13 | 14 | (common/register-fixtures)
|
|
157 | 158 |
|
158 | 159 |
|
159 | 160 | (deftest retry-with-timeout-test
|
160 |
| - (testing "Success -> Results!!!" |
161 |
| - (is (= "Results!!!" |
162 |
| - (retry-with-timeout |
163 |
| - "Success" |
164 |
| - (->RetrySettings 1 (millis/<-seconds 1) (millis/<-seconds 5) (constantly false)) |
165 |
| - (constantly "Results!!!"))))) |
166 |
| - |
167 |
| - (testing "Taking too much time fails!" |
168 |
| - (is (instance? RuntimeException |
169 |
| - (try* |
170 |
| - (retry-with-timeout |
171 |
| - "Sloooow" |
172 |
| - (->RetrySettings 3 (millis/<-seconds 1) 50 (constantly false)) |
173 |
| - #(Thread/sleep (millis/<-seconds 2))))))) |
174 |
| - |
175 |
| - (testing "Fatal errors abort retrying" |
176 |
| - (is (instance? RuntimeException |
177 |
| - (try* |
178 |
| - (retry-with-timeout |
179 |
| - "Ooops..." |
180 |
| - (->RetrySettings 3 (millis/<-seconds 1) (millis/<-seconds 5) (constantly true)) |
181 |
| - #(throw (RuntimeException.))))))) |
182 |
| - |
183 |
| - (testing "If at first you don't succeed, try, try again..." |
184 |
| - (let [attempts (atom 0) |
185 |
| - job-fn (fn [] |
186 |
| - (swap! attempts inc) |
187 |
| - (when (< @attempts 2) (throw (RuntimeException. "Not this time"))) |
188 |
| - "Finally--success!")] |
189 |
| - (is (= "Finally--success!" |
| 161 | + (testing "nil arguments throw ExceptionInfo" |
| 162 | + (testing "nil in main argument list" |
| 163 | + (is (thrown? ExceptionInfo |
| 164 | + (retry-with-timeout |
| 165 | + nil |
| 166 | + (->RetrySettings 1 (millis/<-seconds 1) (millis/<-seconds 5) (constantly false)) |
| 167 | + (constantly "nil not allowed!")))) |
| 168 | + |
| 169 | + (is (thrown? ExceptionInfo |
| 170 | + (retry-with-timeout |
| 171 | + "nil throws!" |
| 172 | + nil |
| 173 | + (constantly "nil not allowed!")))) |
| 174 | + |
| 175 | + (is (thrown? ExceptionInfo |
| 176 | + (retry-with-timeout |
| 177 | + "nil throws!" |
| 178 | + (->RetrySettings 1 (millis/<-seconds 1) (millis/<-seconds 5) (constantly false)) |
| 179 | + nil)))) |
| 180 | + |
| 181 | + (testing "nil in RetrySettings" |
| 182 | + (is (thrown? ExceptionInfo |
| 183 | + (retry-with-timeout |
| 184 | + "nil throws!" |
| 185 | + (->RetrySettings nil (millis/<-seconds 1) (millis/<-seconds 5) (constantly false)) |
| 186 | + (constantly "nil not allowed!")))) |
| 187 | + |
| 188 | + (is (thrown? ExceptionInfo |
| 189 | + (retry-with-timeout |
| 190 | + "nil throws!" |
| 191 | + (->RetrySettings 1 nil (millis/<-seconds 5) (constantly false)) |
| 192 | + (constantly "nil not allowed!")))) |
| 193 | + |
| 194 | + (is (thrown? ExceptionInfo |
| 195 | + (retry-with-timeout |
| 196 | + "nil throws!" |
| 197 | + (->RetrySettings 1 (millis/<-seconds 1) nil (constantly false)) |
| 198 | + (constantly "nil not allowed!")))) |
| 199 | + |
| 200 | + (is (thrown? ExceptionInfo |
| 201 | + (retry-with-timeout |
| 202 | + "nil throws!" |
| 203 | + (->RetrySettings 1 (millis/<-seconds 1) (millis/<-seconds 5) nil) |
| 204 | + (constantly "nil not allowed!")))))) |
| 205 | + |
| 206 | + (testing "Happy paths: " |
| 207 | + (testing "Success -> Results!!!" |
| 208 | + (is (= "Results!!!" |
190 | 209 | (retry-with-timeout
|
191 |
| - "Persistance pays off" |
192 |
| - (->RetrySettings 3 (millis/<-seconds 1) (millis/<-seconds 5) (constantly false)) |
193 |
| - job-fn))) |
194 |
| - (is (= 2 @attempts))))) |
| 210 | + "Success" |
| 211 | + (->RetrySettings 1 (millis/<-seconds 1) (millis/<-seconds 5) (constantly false)) |
| 212 | + (constantly "Results!!!"))))) |
| 213 | + |
| 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))))) |
| 226 | + |
| 227 | + (testing "Sad paths: " |
| 228 | + (testing "Taking too much time fails when abort?-fn is (constantly false)!" |
| 229 | + (is (thrown? RuntimeException |
| 230 | + (retry-with-timeout |
| 231 | + "Sloooow" |
| 232 | + (->RetrySettings 3 (millis/<-seconds 1) 50 (constantly false)) |
| 233 | + #(Thread/sleep (millis/<-seconds 2)))))) |
| 234 | + |
| 235 | + (testing "Taking too much time fails--even with retries! (Note: timeouts are not exceptions so abort?-fn is not relevant)" |
| 236 | + (let [total-tries (atom 0)] |
| 237 | + (is (thrown? RuntimeException |
| 238 | + (retry-with-timeout |
| 239 | + "Sloooow" |
| 240 | + (->RetrySettings 3 (millis/<-seconds 1) 50 (constantly true)) |
| 241 | + (fn [] |
| 242 | + (swap! total-tries inc) |
| 243 | + (Thread/sleep (millis/<-seconds 2)))))) |
| 244 | + (is (= 4 @total-tries)))) |
| 245 | + |
| 246 | + (testing "Fatal errors abort retrying" |
| 247 | + (let [total-tries (atom 0)] |
| 248 | + (is (thrown? RuntimeException |
| 249 | + (retry-with-timeout |
| 250 | + "Ooops..." |
| 251 | + (->RetrySettings 3 (millis/<-seconds 1) (millis/<-seconds 5) (constantly true)) |
| 252 | + (fn [] |
| 253 | + (swap! total-tries inc) |
| 254 | + (throw (RuntimeException.)))))) |
| 255 | + (is (= 1 @total-tries)))))) |
195 | 256 |
|
196 | 257 |
|
197 | 258 | ;; (dis)allowed values ------------------------------------------------------------------
|
|
220 | 281 |
|
221 | 282 |
|
222 | 283 |
|
223 |
| -(run-tests) |
| 284 | +;(run-tests) |
0 commit comments