Skip to content

Commit

Permalink
Add some more tests to ignore list
Browse files Browse the repository at this point in the history
clj-http options that interop with Apache-specific stuff can't be tested
  • Loading branch information
KingMob committed Oct 26, 2022
1 parent 718fcce commit 3abf9c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/aleph/http/clj_http/core_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@
(is (= http-context context-for-request))
(is (= request-config (.getRequestConfig context-for-request)))))))

(deftest ^:integration test-custom-http-builder-fns
(deftest ^:integration ^:ignore test-custom-http-builder-fns
(run-server)
(let [resp (client/get (localhost "/get")
{:headers {"add-headers" "true"}
Expand Down Expand Up @@ -884,7 +884,7 @@
(is false "should have thrown a timeout exception")
(catch TimeoutException te)))

(deftest ^:integration test-reusable-http-client
(deftest ^:integration ^:ignore test-reusable-http-client
(run-server)
(let [cm (conn/make-reuseable-async-conn-manager {})
hc (core/build-async-http-client {} cm)]
Expand Down Expand Up @@ -942,7 +942,7 @@
(is (= @validated true))))


(deftest t-cache-config
(deftest ^:ignore t-cache-config
(let [cc (core/build-cache-config
{:cache-config {:allow-303-caching true
:asynchronous-worker-idle-lifetime-secs 10
Expand Down Expand Up @@ -971,7 +971,7 @@
(is (= false (.isSharedCache cc)))
(is (= true (.isWeakETagOnPutDeleteAllowed cc)))))

(deftest ^:integration t-client-caching
(deftest ^:integration ^:ignore t-client-caching
(run-server)
(let [cm (conn/make-reusable-conn-manager {})
r1 (client/get (localhost "/get")
Expand Down

0 comments on commit 3abf9c8

Please sign in to comment.