Skip to content

Commit cecb98f

Browse files
committed
fix: gracefully handle display of username that causes InvalidComponentError to be raised when composing a URI
For: pact-foundation/pact-net#289
1 parent bb0ddca commit cecb98f

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

lib/pact/provider/pact_uri.rb

+6-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ def password
3030

3131
def to_s
3232
if basic_auth? && http_or_https_uri?
33-
URI(@uri).tap { |x| x.userinfo="#{username}:*****"}.to_s
33+
begin
34+
URI(@uri).tap { |x| x.userinfo="#{username}:*****"}.to_s
35+
rescue URI::InvalidComponentError
36+
URI(@uri).tap { |x| x.userinfo="*****:*****"}.to_s
37+
end
3438
elsif personal_access_token? && http_or_https_uri?
3539
URI(@uri).tap { |x| x.userinfo="*****"}.to_s
3640
else
@@ -45,7 +49,7 @@ def to_s
4549
private def http_or_https_uri?
4650
uri.start_with?('http://', 'https://')
4751
end
48-
52+
4953
end
5054
end
5155
end

spec/lib/pact/provider/pact_uri_spec.rb

+8
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,14 @@
3838
expect(pact_uri.to_s).to eq uri
3939
end
4040
end
41+
42+
context "with a username that has an @ symbol" do
43+
let(:username) { "foo@bar" }
44+
45+
it 'does not blow up' do
46+
expect(pact_uri.to_s).to eq "http://*****:*****@uri"
47+
end
48+
end
4149
end
4250

4351
context 'with personal access token provided' do

0 commit comments

Comments
 (0)