Skip to content

Commit 9244c14

Browse files
committed
feat(hal client): ensure meaningful error is displayed when HTTP errors are returned
1 parent 4abfe7d commit 9244c14

File tree

4 files changed

+40
-4
lines changed

4 files changed

+40
-4
lines changed

lib/pact/hal/entity.rb

+10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ module Pact
77
module Hal
88
class RelationNotFoundError < ::Pact::Error; end
99

10+
class ErrorResponseReturned < ::Pact::Error; end
11+
1012
class Entity
1113

1214
def initialize(href, data, http_client, response = nil)
@@ -76,6 +78,10 @@ def method_missing(method_name, *args, &block)
7678
def respond_to_missing?(method_name, include_private = false)
7779
@data.key?(method_name) || @links.key?(method_name)
7880
end
81+
82+
def assert_success!
83+
self
84+
end
7985
end
8086

8187
class ErrorEntity < Entity
@@ -91,6 +97,10 @@ def initialize(href, data, http_client, response = nil)
9197
def success?
9298
false
9399
end
100+
101+
def assert_success!
102+
raise ErrorResponseReturned.new("Error retrieving #{@href} status=#{response ? response.code: nil} #{response ? response.raw_body : ''}")
103+
end
94104
end
95105
end
96106
end

lib/pact/pact_broker/fetch_pacts.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,16 @@ def link_for(tag)
7272
end
7373

7474
def index
75-
@index_entity ||= Pact::Hal::Link.new({ "href" => broker_base_url }, http_client).get
75+
@index_entity ||= Pact::Hal::Link.new({ "href" => broker_base_url }, http_client).get.assert_success!
7676
end
7777

7878
def latest_pacts_for_provider
7979
link = index_entity._link!(LATEST_PROVIDER_RELATION)
80-
pact_urls(link.expand(provider: provider).get)
80+
pact_urls(link.expand(provider: provider).get.assert_success!)
8181
end
8282

8383
def pact_urls(link_by_provider)
84-
link_by_provider.fetch(PB_PACTS, PACTS).collect do |pact|
84+
link_by_provider.assert_success!.fetch(PB_PACTS, PACTS).collect do |pact|
8585
Pact::Provider::PactURI.new(pact[HREF], http_client_options)
8686
end
8787
end

lib/pact/pact_broker/fetch_pending_pacts.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def call
3636
private
3737

3838
def index
39-
@index_entity ||= Pact::Hal::Link.new({ "href" => broker_base_url }, http_client).get
39+
@index_entity ||= Pact::Hal::Link.new({ "href" => broker_base_url }, http_client).get.assert_success!
4040
end
4141

4242
def pending_pacts_for_provider

spec/lib/pact/hal/entity_spec.rb

+26
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,32 @@ module Hal
6060
end
6161
end
6262

63+
describe "assert_success!" do
64+
context "when the response is successful" do
65+
it "returns the entity" do
66+
expect(entity.assert_success!).to be entity
67+
end
68+
end
69+
70+
context "when the response is not successful and there is no response" do
71+
subject(:entity) { ErrorEntity.new("http://pact", pact_hash, http_client) }
72+
73+
it "raises an error" do
74+
expect { entity.assert_success! }.to raise_error Pact::Hal::ErrorResponseReturned, "Error retrieving http://pact status= "
75+
end
76+
end
77+
78+
context "when the response is not successful and there is a response" do
79+
let(:response) { double('response', code: 200, raw_body: "body") }
80+
81+
subject(:entity) { ErrorEntity.new("http://pact", pact_hash, http_client, response) }
82+
83+
it "raises an error" do
84+
expect { entity.assert_success! }.to raise_error Pact::Hal::ErrorResponseReturned, "Error retrieving http://pact status=200 body"
85+
end
86+
end
87+
end
88+
6389
describe "can?" do
6490
context "when the relation exists" do
6591
it "returns true" do

0 commit comments

Comments
 (0)