Skip to content

Commit 5b6c0d7

Browse files
committed
chore: PR feedback
1 parent 2a15bdb commit 5b6c0d7

File tree

2 files changed

+0
-53
lines changed

2 files changed

+0
-53
lines changed

lib/postscript/request.ex

-27
Original file line numberDiff line numberDiff line change
@@ -45,37 +45,10 @@ defmodule Postscript.Request do
4545

4646
request
4747
|> config.http_client.send(config.http_client_opts)
48-
|> maybe_validate_json_decode(config)
4948
|> retry(request, config)
5049
|> finish(config)
5150
end
5251

53-
defp maybe_validate_json_decode({:ok, %{body: body, headers: headers}} = response, config) do
54-
headers
55-
|> Enum.reduce(%{}, fn {k, v}, acc -> Map.put(acc, String.downcase(k), v) end)
56-
|> case do
57-
%{"content-type" => "application/json"} ->
58-
case config.json_codec.decode(body) do
59-
{:ok, _decoded} ->
60-
response
61-
62-
{:error, decode_error} ->
63-
Logger.warning([
64-
inspect(__MODULE__),
65-
" received an invalid JSON response ",
66-
inspect(body)
67-
])
68-
69-
{:error, decode_error}
70-
end
71-
72-
_otherwise ->
73-
response
74-
end
75-
end
76-
77-
defp maybe_validate_json_decode(response, _config), do: response
78-
7952
defp retry(response, _request, %_{retry: retry}) when is_nil(retry) or retry == false do
8053
response
8154
end

test/postscript_test.exs

-26
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@ defmodule PostscriptTest do
99

1010
@not_ok_resp %{body: "{\"ok\":false}", headers: [], status_code: 400}
1111

12-
@not_json_resp %{
13-
body: "not json",
14-
headers: [{"content-type", "application/json"}],
15-
status_code: 200
16-
}
17-
1812
test "sends the proper HTTP method" do
1913
Http.Mock.start_link()
2014

@@ -166,26 +160,6 @@ defmodule PostscriptTest do
166160
assert {:error, %Response{}} = result
167161
end
168162

169-
test "logs warning and returns :error when response is not valid JSON" do
170-
Http.Mock.start_link()
171-
172-
response = {:ok, @not_json_resp}
173-
174-
Http.Mock.put_response(response)
175-
176-
operation = %Operation{method: :post, params: [hello: "world"], path: "/fake"}
177-
178-
assert {result, log} =
179-
with_log([level: :warning], fn ->
180-
Postscript.request(operation, http_client: Http.Mock)
181-
end)
182-
183-
assert {:error, _error} = result
184-
185-
assert log =~ "invalid JSON response"
186-
assert log =~ "\"not json\""
187-
end
188-
189163
test "passes the response through when unrecognized" do
190164
Http.Mock.start_link()
191165

0 commit comments

Comments
 (0)