Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
07610c3b
Commit
07610c3b
authored
Feb 23, 2018
by
Shinya Maeda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Copy original file to temp file always to prevent data loss
parent
033f751f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
17 deletions
+33
-17
app/services/ci/create_trace_artifact_service.rb
app/services/ci/create_trace_artifact_service.rb
+4
-4
spec/services/ci/create_trace_artifact_service_spec.rb
spec/services/ci/create_trace_artifact_service_spec.rb
+29
-13
No files found.
app/services/ci/create_trace_artifact_service.rb
View file @
07610c3b
...
@@ -8,7 +8,7 @@ module Ci
...
@@ -8,7 +8,7 @@ module Ci
temp_file!
(
JobArtifactUploader
.
workhorse_upload_path
)
do
|
temp_path
|
temp_file!
(
JobArtifactUploader
.
workhorse_upload_path
)
do
|
temp_path
|
FileUtils
.
cp
(
stream
.
path
,
temp_path
)
FileUtils
.
cp
(
stream
.
path
,
temp_path
)
create_job_trace!
(
temp_path
)
create_job_trace!
(
job
,
temp_path
)
FileUtils
.
rm
(
stream
.
path
)
FileUtils
.
rm
(
stream
.
path
)
end
end
end
end
...
@@ -16,17 +16,17 @@ module Ci
...
@@ -16,17 +16,17 @@ module Ci
private
private
def
create_job_trace!
(
path
)
def
create_job_trace!
(
job
,
path
)
job
.
create_job_artifacts_trace!
(
job
.
create_job_artifacts_trace!
(
project:
job
.
project
,
project:
job
.
project
,
file_type: :trace
,
file_type: :trace
,
file:
UploadedFile
.
new
(
path
,
'
build
.log'
,
'application/octet-stream'
)
file:
UploadedFile
.
new
(
path
,
'
job
.log'
,
'application/octet-stream'
)
)
)
end
end
def
temp_file!
(
temp_dir
)
def
temp_file!
(
temp_dir
)
FileUtils
.
mkdir_p
(
temp_dir
)
FileUtils
.
mkdir_p
(
temp_dir
)
temp_file
=
Tempfile
.
new
(
'
file
'
,
temp_dir
)
temp_file
=
Tempfile
.
new
(
'
legacy-trace-tmp-
'
,
temp_dir
)
temp_file
&
.
close
temp_file
&
.
close
yield
(
temp_file
.
path
)
yield
(
temp_file
.
path
)
ensure
ensure
...
...
spec/services/ci/create_trace_artifact_service_spec.rb
View file @
07610c3b
...
@@ -4,40 +4,56 @@ describe Ci::CreateTraceArtifactService do
...
@@ -4,40 +4,56 @@ describe Ci::CreateTraceArtifactService do
describe
'#execute'
do
describe
'#execute'
do
subject
{
described_class
.
new
(
nil
,
nil
).
execute
(
job
)
}
subject
{
described_class
.
new
(
nil
,
nil
).
execute
(
job
)
}
let
(
:job
)
{
create
(
:ci_build
)
}
context
'when the job does not have trace artifact'
do
context
'when the job does not have trace artifact'
do
context
'when the job has a trace file'
do
context
'when the job has a trace file'
do
before
do
let!
(
:job
)
{
create
(
:ci_build
,
:trace_live
)
}
allow_any_instance_of
(
Gitlab
::
Ci
::
Trace
)
let!
(
:legacy_path
)
{
job
.
trace
.
read
{
|
stream
|
return
stream
.
path
}
}
.
to
receive
(
:default_path
)
{
expand_fixture_path
(
'trace/sample_trace'
)
}
allow_any_instance_of
(
JobArtifactUploader
).
to
receive
(
:move_to_cache
)
{
false
}
it
{
expect
(
File
.
exists?
(
legacy_path
)).
to
be_truthy
}
allow_any_instance_of
(
JobArtifactUploader
).
to
receive
(
:move_to_store
)
{
false
}
end
it
'creates trace artifact'
do
it
'creates trace artifact'
do
expect
{
subject
}.
to
change
{
Ci
::
JobArtifact
.
count
}.
by
(
1
)
expect
{
subject
}.
to
change
{
Ci
::
JobArtifact
.
count
}.
by
(
1
)
expect
(
job
.
job_artifacts_trace
.
read_attribute
(
:file
)).
to
eq
(
'sample_trace'
)
expect
(
File
.
exists?
(
legacy_path
)).
to
be_falsy
expect
(
File
.
exists?
(
job
.
job_artifacts_trace
.
file
.
path
)).
to
be_truthy
expect
(
job
.
job_artifacts_trace
.
exists?
).
to
be_truthy
expect
(
job
.
job_artifacts_trace
.
file
.
filename
).
to
eq
(
'job.log'
)
end
end
context
'when
the job has already had trace artifact
'
do
context
'when
failed to create trace artifact record
'
do
before
do
before
do
create
(
:ci_job_artifact
,
:trace
,
job:
job
)
# When ActiveRecord error happens
allow_any_instance_of
(
Ci
::
JobArtifact
).
to
receive
(
:save
).
and_return
(
false
)
allow_any_instance_of
(
Ci
::
JobArtifact
).
to
receive_message_chain
(
:errors
,
:full_messages
)
.
and_return
(
"Error"
)
subject
rescue
nil
job
.
reload
end
end
it
'does not create trace artifact'
do
it
'keeps legacy trace and removes trace artifact'
do
expect
{
subject
}.
not_to
change
{
Ci
::
JobArtifact
.
count
}
expect
(
File
.
exists?
(
legacy_path
)).
to
be_truthy
expect
(
job
.
job_artifacts_trace
).
to
be_nil
end
end
end
end
end
end
context
'when the job does not have a trace file'
do
context
'when the job does not have a trace file'
do
let!
(
:job
)
{
create
(
:ci_build
)
}
it
'does not create trace artifact'
do
it
'does not create trace artifact'
do
expect
{
subject
}.
not_to
change
{
Ci
::
JobArtifact
.
count
}
expect
{
subject
}.
not_to
change
{
Ci
::
JobArtifact
.
count
}
end
end
end
end
end
end
context
'when the job has already had trace artifact'
do
let!
(
:job
)
{
create
(
:ci_build
,
:trace_artifact
)
}
it
'does not create trace artifact'
do
expect
{
subject
}.
not_to
change
{
Ci
::
JobArtifact
.
count
}
end
end
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment