Commit 11485306 authored by Kamil Trzciński's avatar Kamil Trzciński

Merge branch 'ci-fixes' into 'master'

CI: Fix clone url and fix project token removal

- Fixes broken CI clone url on dev.gitlab.org
- Fixes regression in CI token removal

/cc @vsizov @dzaporozhets 



See merge request !1481
parents b5654eb4 0e548473
......@@ -143,12 +143,6 @@ module Ci
html ||= ''
end
def trace
if project && read_attribute(:trace).present?
read_attribute(:trace).gsub(project.token, 'xxxxxx')
end
end
def started?
!pending? && !canceled? && started_at
end
......@@ -223,7 +217,7 @@ module Ci
end
end
def trace
def raw_trace
if File.exist?(path_to_trace)
File.read(path_to_trace)
else
......@@ -232,6 +226,15 @@ module Ci
end
end
def trace
trace = raw_trace
if project && trace.present?
trace.gsub(project.token, 'xxxxxx')
else
trace
end
end
def trace=(trace)
unless Dir.exists? dir_to_trace
FileUtils.mkdir_p dir_to_trace
......
......@@ -169,8 +169,7 @@ module Ci
# using http and basic auth
def repo_url_with_auth
auth = "gitlab-ci-token:#{token}@"
url = http_url_to_repo + ".git"
url.sub(/^https?:\/\//) do |prefix|
http_url_to_repo.sub(/^https?:\/\//) do |prefix|
prefix + auth
end
end
......
......@@ -178,6 +178,17 @@ describe Ci::Build do
it { is_expected.to include(text) }
it { expect(subject.length).to be >= text.length }
end
context 'if build.trace hides token' do
let(:token) { 'my_secret_token' }
before do
build.project.update_attributes(token: token)
build.update_attributes(trace: token)
end
it { is_expected.to_not include(token) }
end
end
describe :timeout do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment