Skip to content

Commit 4abfe7d

Browse files
committed
fix: correct url encoding for expanded HAL links
Fixes: pact-foundation/pact_broker-client#44
1 parent 47d3894 commit 4abfe7d

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

lib/pact/hal/link.rb

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'uri'
1+
require 'erb'
22
require 'delegate'
33

44
module Pact
@@ -54,11 +54,9 @@ def wrap_response(href, http_response)
5454
end
5555

5656
def expand_url(params, url)
57-
new_url = url
58-
params.each do | key, value |
59-
new_url = new_url.gsub('{' + key.to_s + '}', URI.escape(value))
57+
params.inject(url) do | url, (key, value) |
58+
url.gsub('{' + key.to_s + '}', ERB::Util.url_encode(value))
6059
end
61-
new_url
6260
end
6361
end
6462
end

spec/lib/pact/hal/link_spec.rb

+4
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,10 @@ module Hal
102102
it "returns a duplicate Link with the expanded href with URL escaping" do
103103
expect(subject.expand(bar: 'wiffle meep').href).to eq "http://foo/wiffle%20meep"
104104
end
105+
106+
it "returns a duplicate Link with the expanded href with URL escaping for forward slashes" do
107+
expect(subject.expand(bar: 'wiffle/meep').href).to eq "http://foo/wiffle%2Fmeep"
108+
end
105109
end
106110
end
107111
end

0 commit comments

Comments
 (0)