Skip to content

Commit 821238d

Browse files
committed
fix: correctly escape expanded URL in the HAL client
1 parent 2387424 commit 821238d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

lib/pact/hal/link.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def wrap_response(http_response)
5656
def expand_url(params, url)
5757
new_url = url
5858
params.each do | key, value |
59-
new_url = new_url.gsub('{' + key.to_s + '}', value)
59+
new_url = new_url.gsub('{' + key.to_s + '}', URI.escape(value))
6060
end
6161
new_url
6262
end

spec/lib/pact/hal/link_spec.rb

+4
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ module Hal
9898
it "returns a duplicate Link with the expanded href" do
9999
expect(subject.expand(bar: 'wiffle').href).to eq "http://foo/wiffle"
100100
end
101+
102+
it "returns a duplicate Link with the expanded href with URL escaping" do
103+
expect(subject.expand(bar: 'wiffle meep').href).to eq "http://foo/wiffle%20meep"
104+
end
101105
end
102106
end
103107
end

0 commit comments

Comments
 (0)