Skip to content

Commit b9deb09

Browse files
committed
fix: use configured credentials when fetching the diff with previous version
Closes: #205
1 parent 8a5eacd commit b9deb09

18 files changed

+127
-208
lines changed

lib/pact/hal/http_client.rb

+4-3
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,9 @@ def post href, body = nil, headers = {}
3636

3737
def create_request uri, http_method, body = nil, headers = {}
3838
request = Net::HTTP.const_get(http_method).new(uri.request_uri)
39-
request['Content-Type'] = "application/json" if ['Post', 'Put', 'Patch'].include?(http_method)
40-
request['Accept'] = "application/hal+json"
4139
headers.each do | key, value |
4240
request[key] = value
4341
end
44-
4542
request.body = body if body
4643
request.basic_auth username, password if username
4744
request['Authorization'] = "Bearer #{token}" if token
@@ -85,6 +82,10 @@ def status
8582
def success?
8683
__getobj__().code.start_with?("2")
8784
end
85+
86+
def json?
87+
self['content-type'] && self['content-type'] =~ /json/
88+
end
8889
end
8990
end
9091
end

lib/pact/hal/link.rb

+15-9
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ def initialize(attrs, http_client)
2323
end
2424

2525
def run(payload = nil)
26-
response = case request_method
27-
when :get
28-
get(payload)
29-
when :put
30-
put(payload)
31-
when :post
32-
post(payload)
33-
end
26+
case request_method
27+
when :get
28+
get(payload)
29+
when :put
30+
put(payload)
31+
when :post
32+
post(payload)
33+
end
3434
end
3535

3636
def title_or_name
@@ -89,8 +89,14 @@ def with_query(query)
8989

9090
def wrap_response(href, http_response)
9191
require 'pact/hal/entity' # avoid circular reference
92+
require 'pact/hal/non_json_entity'
93+
9294
if http_response.success?
93-
Entity.new(href, http_response.body, @http_client, http_response)
95+
if http_response.json?
96+
Entity.new(href, http_response.body, @http_client, http_response)
97+
else
98+
NonJsonEntity.new(href, http_response.raw_body, @http_client, http_response)
99+
end
94100
else
95101
ErrorEntity.new(href, http_response.raw_body, @http_client, http_response)
96102
end

lib/pact/hal/non_json_entity.rb

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
module Pact
2+
module Hal
3+
class NonJsonEntity
4+
def initialize(href, body, http_client, response = nil)
5+
@href = href
6+
@body = body
7+
@client = http_client
8+
@response = response
9+
end
10+
11+
def success?
12+
true
13+
end
14+
15+
def response
16+
@response
17+
end
18+
19+
def body
20+
@body
21+
end
22+
23+
def assert_success!
24+
self
25+
end
26+
end
27+
end
28+
end

lib/pact/provider/help/content.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ module Provider
55
module Help
66
class Content
77

8-
def initialize pact_jsons
9-
@pact_jsons = pact_jsons
8+
def initialize pact_sources
9+
@pact_sources = pact_sources
1010
end
1111

1212
def text
@@ -15,7 +15,7 @@ def text
1515

1616
private
1717

18-
attr_reader :pact_jsons
18+
attr_reader :pact_sources
1919

2020
def help_text
2121
temp_dir = Pact.configuration.tmp_dir
@@ -28,7 +28,7 @@ def template_string
2828
end
2929

3030
def pact_diffs
31-
pact_jsons.collect do | pact_json |
31+
pact_sources.collect do | pact_json |
3232
PactDiff.call(pact_json)
3333
end.compact.join("\n")
3434
end

lib/pact/provider/help/pact_diff.rb

+10-32
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1+
require 'pact/hal/entity'
2+
13
module Pact
24
module Provider
35
module Help
46
class PactDiff
57
class PrintPactDiffError < StandardError; end
68

7-
attr_reader :pact_json, :output
9+
attr_reader :pact_source, :output
810

9-
def initialize pact_json
10-
@pact_json = pact_json
11+
def initialize pact_source
12+
@pact_source = pact_source
1113
end
1214

13-
def self.call pact_json
14-
new(pact_json).call
15+
def self.call pact_source
16+
new(pact_source).call
1517
end
1618

1719
def call
1820
begin
19-
if diff_rel && diff_url
20-
header + "\n" + get_diff
21-
end
21+
header + "\n" + get_diff
2222
rescue PrintPactDiffError => e
2323
return e.message
2424
end
@@ -30,35 +30,13 @@ def header
3030
"The following changes have been made since the previous distinct version of this pact, and may be responsible for verification failure:\n"
3131
end
3232

33-
def pact_hash
34-
@pact_hash ||= json_load(pact_json)
35-
end
36-
37-
def links
38-
pact_hash['_links'] || pact_hash['links']
39-
end
40-
41-
def diff_rel
42-
return nil unless links
43-
key = links.keys.find { | key | key =~ /diff/ && key =~ /distinct/ && key =~ /previous/}
44-
key ? links[key] : nil
45-
end
46-
47-
def diff_url
48-
diff_rel['href']
49-
end
50-
5133
def get_diff
5234
begin
53-
URI.open(diff_url) { | file | file.read }
35+
pact_source.hal_entity._link!("pb:diff-previous-distinct").get!(nil, "Accept" => "text/plain").body
5436
rescue StandardError => e
55-
raise PrintPactDiffError.new("Tried to retrieve diff with previous pact from #{diff_url}, but received response code #{e}.")
37+
raise PrintPactDiffError.new("Tried to retrieve diff with previous pact, but received error #{e.class} #{e.message}.")
5638
end
5739
end
58-
59-
def json_load json
60-
JSON.load(json, nil, { max_nesting: 50 })
61-
end
6240
end
6341
end
6442
end

lib/pact/provider/help/write.rb

+6-7
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ class Write
99

1010
HELP_FILE_NAME = 'help.md'
1111

12-
def self.call pact_jsons, reports_dir = Pact.configuration.reports_dir
13-
new(pact_jsons, reports_dir).call
12+
def self.call pact_sources, reports_dir = Pact.configuration.reports_dir
13+
new(pact_sources, reports_dir).call
1414
end
1515

16-
def initialize pact_jsons, reports_dir
17-
@pact_jsons = pact_jsons
16+
def initialize pact_sources, reports_dir
17+
@pact_sources = pact_sources
1818
@reports_dir = File.expand_path(reports_dir)
1919
end
2020

@@ -25,7 +25,7 @@ def call
2525

2626
private
2727

28-
attr_reader :reports_dir, :pact_jsons
28+
attr_reader :reports_dir, :pact_sources
2929

3030
def clean_reports_dir
3131
raise "Cleaning report dir #{reports_dir} would delete project!" if reports_dir_contains_pwd
@@ -46,9 +46,8 @@ def help_path
4646
end
4747

4848
def help_text
49-
Content.new(pact_jsons).text
49+
Content.new(pact_sources).text
5050
end
51-
5251
end
5352
end
5453
end

lib/pact/provider/pact_source.rb

+9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
require 'pact/consumer_contract/pact_file'
2+
require 'pact/hal/http_client'
3+
require 'pact/hal/entity'
24

35
module Pact
46
module Provider
@@ -17,6 +19,13 @@ def pact_json
1719
def pact_hash
1820
@pact_hash ||= JSON.load(pact_json, nil, { max_nesting: 50 })
1921
end
22+
23+
def hal_entity
24+
http_client_keys = [:username, :password, :token]
25+
http_client_options = uri.options.reject{ |k, _| !http_client_keys.include?(k) }
26+
http_client = Pact::Hal::HttpClient.new(http_client_options.merge(verbose: true))
27+
Pact::Hal::Entity.new(uri, pact_hash, http_client)
28+
end
2029
end
2130
end
2231
end

lib/pact/provider/pact_spec_runner.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def configure_rspec
8080
executing_with_ruby = executing_with_ruby?
8181

8282
config.after(:suite) do | suite |
83-
Pact::Provider::Help::Write.call(jsons) if executing_with_ruby
83+
Pact::Provider::Help::Write.call(Pact.provider_world.pact_sources) if executing_with_ruby
8484
end
8585
end
8686

spec/integration/publish_verification_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
subject { Pact::Provider::VerificationResults::PublishAll.call(pact_sources, test_results_hash) }
6060

6161
let!(:request) do
62-
stub_request(:post, 'http://publish').to_return(status: 200, body: created_verification_body)
62+
stub_request(:post, 'http://publish').to_return(status: 200, headers: {'Content-Type' => 'application/hal+json'}, body: created_verification_body)
6363
end
6464

6565
it "publishes the results" do

spec/lib/pact/hal/entity_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module Hal
99
end
1010

1111
let(:provider_response) do
12-
double('response', body: provider_hash, success?: true)
12+
double('response', body: provider_hash, success?: true, json?: true)
1313
end
1414

1515
let(:provider_hash) do

spec/lib/pact/hal/http_client_spec.rb

+3-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module Hal
1313
let!(:request) do
1414
stub_request(:get, "http://example.org/").
1515
with( headers: {
16-
'Accept'=>'application/hal+json',
16+
'Accept'=>'*/*',
1717
'Authorization'=>'Basic Zm9vOmJhcg=='
1818
}).
1919
to_return(status: 200, body: response_body, headers: {'Content-Type' => 'application/json'})
@@ -86,9 +86,8 @@ module Hal
8686
let!(:request) do
8787
stub_request(:post, "http://example.org/").
8888
with( headers: {
89-
'Accept'=>'application/hal+json',
90-
'Authorization'=>'Basic Zm9vOmJhcg==',
91-
'Content-Type'=>'application/json'
89+
'Accept'=>'*/*',
90+
'Authorization'=>'Basic Zm9vOmJhcg=='
9291
},
9392
body: request_body).
9493
to_return(status: 200, body: response_body, headers: {'Content-Type' => 'application/json'})

spec/lib/pact/hal/link_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module Hal
1010
end
1111

1212
let(:response) do
13-
instance_double('Pact::Hal::HttpClient::Response', success?: success, body: response_body, raw_body: response_body.to_json)
13+
instance_double('Pact::Hal::HttpClient::Response', success?: success, body: response_body, raw_body: response_body.to_json, json?: true)
1414
end
1515

1616
let(:success) { true }

spec/lib/pact/pact_broker/fetch_pacts_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module PactBroker
3333

3434
context "when there is a HAL relation missing" do
3535
before do
36-
stub_request(:get, "http://broker.org/").to_return(status: 200, body: {"_links" => {} }.to_json, headers: {})
36+
stub_request(:get, "http://broker.org/").to_return(status: 200, body: {"_links" => {} }.to_json, headers: {"Content-Type" => "application/hal+json"})
3737
end
3838

3939
it "raises a Pact::Error" do

spec/lib/pact/provider/help/content_spec.rb

+7-10
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,17 @@ module Pact
44
module Provider
55
module Help
66
describe Content do
7-
87
describe "#text" do
9-
10-
let(:pact_1_json) { { some: 'json'}.to_json }
11-
let(:pact_2_json) { { some: 'other json'}.to_json }
12-
let(:pact_jsons) { [pact_1_json, pact_2_json] }
13-
148
before do
15-
allow(PactDiff).to receive(:call).with(pact_1_json).and_return('diff 1')
16-
allow(PactDiff).to receive(:call).with(pact_2_json).and_return(nil)
9+
allow(PactDiff).to receive(:call).with(pact_source_1).and_return('diff 1')
10+
allow(PactDiff).to receive(:call).with(pact_source_2).and_return(nil)
1711
end
1812

19-
subject { Content.new(pact_jsons) }
13+
let(:pact_source_1) { { some: 'json'}.to_json }
14+
let(:pact_source_2) { { some: 'other json'}.to_json }
15+
let(:pact_sources) { [pact_source_1, pact_source_2] }
16+
17+
subject { Content.new(pact_sources) }
2018

2119
it "displays the log path" do
2220
expect(subject.text).to include Pact.configuration.log_path
@@ -29,7 +27,6 @@ module Help
2927
it "displays the diff" do
3028
expect(subject.text).to include 'diff 1'
3129
end
32-
3330
end
3431
end
3532
end

0 commit comments

Comments
 (0)