summaryrefslogtreecommitdiff
path: root/qa/qa/git
diff options
context:
space:
mode:
authorMichael Kozono <mkozono@gmail.com>2018-06-07 20:52:30 +0000
committerRobert Speicher <robert@gitlab.com>2018-06-07 20:52:30 +0000
commit4fc02032148b3b6c3628ec221e6b10d287136aa6 (patch)
treed552c375396dcd1dd2651a2c1588c9dcc1fb35d9 /qa/qa/git
parent85b6b56a73c15eff10119de5ced2d36ad9125e86 (diff)
downloadgitlab-ce-4fc02032148b3b6c3628ec221e6b10d287136aa6.tar.gz
QA: Redact credentials from URI in git output
Diffstat (limited to 'qa/qa/git')
-rw-r--r--qa/qa/git/repository.rb17
1 files changed, 7 insertions, 10 deletions
diff --git a/qa/qa/git/repository.rb b/qa/qa/git/repository.rb
index 1367671e3ca..5bc4ffbb036 100644
--- a/qa/qa/git/repository.rb
+++ b/qa/qa/git/repository.rb
@@ -7,7 +7,7 @@ module QA
class Repository
include Scenario::Actable
- attr_reader :push_error
+ attr_reader :push_output
def self.perform(*args)
Dir.mktmpdir do |dir|
@@ -35,7 +35,7 @@ module QA
end
def clone(opts = '')
- `git clone #{opts} #{@uri.to_s} ./ #{suppress_output}`
+ run_and_redact_credentials("git clone #{opts} #{@uri} ./")
end
def checkout(branch_name)
@@ -71,8 +71,7 @@ module QA
end
def push_changes(branch = 'master')
- # capture3 returns stdout, stderr and status.
- _, @push_error, _ = Open3.capture3("git push #{@uri} #{branch} #{suppress_output}")
+ @push_output, _ = run_and_redact_credentials("git push #{@uri} #{branch}")
end
def commits
@@ -81,12 +80,10 @@ module QA
private
- def suppress_output
- # If we're running as the default user, it's probably a temporary
- # instance and output can be useful for debugging
- return if @username == Runtime::User.default_name
-
- "&> #{File::NULL}"
+ # Since the remote URL contains the credentials, and git occasionally
+ # outputs the URL. Note that stderr is redirected to stdout.
+ def run_and_redact_credentials(command)
+ Open3.capture2("#{command} 2>&1 | sed -E 's#://[^@]+@#://****@#g'")
end
end
end