Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only include stream/socket in exception if 'throw-entire-message?' is set #8

Merged
merged 1 commit into from
Feb 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 38 additions & 24 deletions src/unixsocket_http/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
(:require [unixsocket-http.client :as client]
[unixsocket-http.data :as data]
[clojure.tools.logging :as log])
(:refer-clojure :exclude [get])
(:import [java.net Socket]
[java.io InputStream]))
(:refer-clojure :exclude [get]))

;; ## Client

Expand Down Expand Up @@ -48,23 +46,38 @@

;; ## I/O

(defn- throw?
[{:keys [status]}
{:keys [throw-exceptions throw-exceptions?]}]
(and (>= status 400)
(not (false? throw-exceptions))
(not (false? throw-exceptions?))))

(letfn [(without-body [{:keys [^java.io.Closeable body] :as response}]
(.close body)
(dissoc response :body))]
(defn- prepare-ex-data!
[response {:keys [throw-entire-message? as]}]
(if-not throw-entire-message?
(case as
(:stream :socket) (without-body response)
response)
response)))

(defn- throw-http-exception!
[{:keys [status] :as response} opts]
(when (throw? response opts)
(let [edata (prepare-ex-data! response opts)]
(throw
(ex-info
(format "HTTP Error: %d" status)
edata)))))

(defn- handle-response
[{:keys [status body] :as response}
{:keys [throw-exceptions throw-exceptions? as]
:or {throw-exceptions true
throw-exceptions? true}}]
[response opts]
(log/tracef "[unixsocket-http] <--- %s" (pr-str response))
(when (and (>= status 400)
throw-exceptions
throw-exceptions?)
(case as
:stream (.close ^InputStream body)
:socket (.close ^Socket body)
nil)
(throw
(ex-info
(format "HTTP Error: %d" status)
response)))
(when (throw? response opts)
(throw-http-exception! response opts))
response)

(defn request
Expand All @@ -84,12 +97,13 @@
[method]
`(defn ~method
~(format
(str "Perform a %s request against the given client. Options are:%n%n"
" - `:headers`: a map of string/string pairs that will be sent as headers.%n"
" - `:query-params`: a map of string/string pairs that will be sent as the query string.%n"
" - `:as`: if set to `:stream` the response's body will be an `InputStream` value (that needs to be closed after consuming).%n"
" - `:throw-exceptions`: if set to `false` all responses will be returned and no exception is thrown on HTTP error codes.%n")
(.toUpperCase (name method)))
(str "Perform a %s request against the given client. Options are:%n%n"
" - `:headers`: a map of string/string pairs that will be sent as headers.%n"
" - `:query-params`: a map of string/string pairs that will be sent as the query string.%n"
" - `:as`: if set to `:stream` the response's body will be an `InputStream` value (that needs to be closed after consuming).%n"
" - `:throw-exceptions?`: if set to `false` all responses will be returned and no exception is thrown on HTTP error codes.%n"
" - `:throw-entire-message?`: if set to `true` HTTP exceptions will contain the full response as `ex-data`; streams and sockets will not be closed automatically!%n")
(.toUpperCase (name method)))
([~'client ~'url]
(~method ~'client ~'url {}))
([~'client ~'url ~'opts]
Expand Down
16 changes: 16 additions & 0 deletions test/unixsocket_http/core_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,22 @@
(send! request)))
true)))

(defspec t-failing-request-with-body (times 10)
(prop/for-all
[request (->> (gen-fail-request)
(gen/fmap #(assoc % :throw-entire-message? true)))
send! (gen-request-fn)]
(try
(send! request)
false
(catch clojure.lang.ExceptionInfo e
(let [{:keys [status body]} (ex-data e)
body (if-not (string? body)
(with-open [in ^java.io.Closeable body]
(slurp in))
body)]
(and (= 500 status) (is (= "FAIL" body))))))))

(defspec t-failing-request-without-exception (times 50)
(prop/for-all
[request (->> (gen-fail-request)
Expand Down