Commit 38b0bd31 authored by Kamil Trzcinski's avatar Kamil Trzcinski Committed by Robert Speicher

Fix: CI token removal regression from build trace

parent 9a26120c
......@@ -145,12 +145,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
......@@ -225,7 +219,7 @@ module Ci
end
end
def trace
def raw_trace
if File.exist?(path_to_trace)
File.read(path_to_trace)
else
......@@ -234,6 +228,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
......
......@@ -177,6 +177,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