Skip to content

Commit 297268d

Browse files
committed
feat: add support for bearer token
1 parent 7f0357d commit 297268d

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

lib/pact/hal/http_client.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44
module Pact
55
module Hal
66
class HttpClient
7-
attr_accessor :username, :password, :verbose
7+
attr_accessor :username, :password, :verbose, :broker_token
88

99
def initialize options
1010
@username = options[:username]
1111
@password = options[:password]
1212
@verbose = options[:verbose]
13+
@broker_token = options[:broker_token]
1314
end
1415

1516
def get href, params = {}, headers = {}
@@ -39,6 +40,7 @@ def create_request uri, http_method, body = nil, headers = {}
3940

4041
request.body = body if body
4142
request.basic_auth username, password if username
43+
request['Authorization'] = "Bearer #{broker_token}" if broker_token
4244
request
4345
end
4446

spec/lib/pact/hal/http_client_spec.rb

+16
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,22 @@ module Hal
4141
end
4242
end
4343

44+
context "with broker token set" do
45+
let!(:request) do
46+
stub_request(:any, /.*/).
47+
with( headers: {
48+
'Authorization'=>'Bearer mytoken123'
49+
}).
50+
to_return(status: 200, body: response_body, headers: {'Content-Type' => 'application/json'})
51+
end
52+
53+
subject { HttpClient.new(broker_token: 'mytoken123') }
54+
55+
it "sets a bearer authorization header" do
56+
do_get
57+
expect(request).to have_been_made
58+
end
59+
end
4460

4561
it "retries on failure" do
4662
expect(Retry).to receive(:until_true)

0 commit comments

Comments
 (0)