File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,11 @@ def password
30
30
31
31
def to_s
32
32
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
34
38
elsif personal_access_token? && http_or_https_uri?
35
39
URI ( @uri ) . tap { |x | x . userinfo = "*****" } . to_s
36
40
else
@@ -45,7 +49,7 @@ def to_s
45
49
private def http_or_https_uri?
46
50
uri . start_with? ( 'http://' , 'https://' )
47
51
end
48
-
52
+
49
53
end
50
54
end
51
55
end
Original file line number Diff line number Diff line change 38
38
expect ( pact_uri . to_s ) . to eq uri
39
39
end
40
40
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
41
49
end
42
50
43
51
context 'with personal access token provided' do
You can’t perform that action at this time.
0 commit comments