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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
82d98426
Commit
82d98426
authored
Jun 25, 2018
by
Shinya Maeda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable specs for atomic operations
parent
6c3eea0d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
87 additions
and
65 deletions
+87
-65
spec/models/ci/build_trace_chunk_spec.rb
spec/models/ci/build_trace_chunk_spec.rb
+87
-65
No files found.
spec/models/ci/build_trace_chunk_spec.rb
View file @
82d98426
...
@@ -60,9 +60,7 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
...
@@ -60,9 +60,7 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
let
(
:data_store
)
{
:fog
}
let
(
:data_store
)
{
:fog
}
before
do
before
do
::
Fog
::
Storage
.
new
(
JobArtifactUploader
.
object_store_credentials
).
tap
do
|
connection
|
build_trace_chunk
.
send
(
:unsafe_set_data!
,
'Sample data in fog'
)
connection
.
put_object
(
'artifacts'
,
"tmp/builds/
#{
build
.
id
}
/chunks/
#{
chunk_index
}
.log"
,
'Sample data in fog'
)
end
end
end
it
{
is_expected
.
to
eq
(
'Sample data in fog'
)
}
it
{
is_expected
.
to
eq
(
'Sample data in fog'
)
}
...
@@ -104,6 +102,20 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
...
@@ -104,6 +102,20 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
expect
(
build_trace_chunk
.
data
).
to
eq
(
merged_data
)
expect
(
build_trace_chunk
.
data
).
to
eq
(
merged_data
)
end
end
context
'when the other process is appending'
do
let
(
:lease_key
)
{
"trace_write:
#{
build_trace_chunk
.
build
.
id
}
:chunks:
#{
build_trace_chunk
.
chunk_index
}
"
}
it
'raise an error'
do
begin
uuid
=
Gitlab
::
ExclusiveLease
.
new
(
lease_key
,
timeout:
1
.
day
).
try_obtain
expect
{
subject
}.
to
raise_error
(
'Failed to obtain a lock'
)
ensure
Gitlab
::
ExclusiveLease
.
cancel
(
lease_key
,
uuid
)
end
end
end
context
'when new_data is nil'
do
context
'when new_data is nil'
do
let
(
:new_data
)
{
nil
}
let
(
:new_data
)
{
nil
}
...
@@ -361,7 +373,7 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
...
@@ -361,7 +373,7 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
end
end
context
'when data does not exist'
do
context
'when data does not exist'
do
it
{
expect
{
subject
}.
to
raise_error
(
Excon
::
Error
::
NotFound
)
}
it
{
expect
{
subject
}.
to
raise_error
(
Excon
::
Error
::
NotFound
)
}
end
end
end
end
end
end
...
@@ -369,6 +381,22 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
...
@@ -369,6 +381,22 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
describe
'#persist_data!'
do
describe
'#persist_data!'
do
subject
{
build_trace_chunk
.
persist_data!
}
subject
{
build_trace_chunk
.
persist_data!
}
shared_examples_for
'Atomic operation'
do
context
'when the other process is persisting'
do
let
(
:lease_key
)
{
"trace_write:
#{
build_trace_chunk
.
build
.
id
}
:chunks:
#{
build_trace_chunk
.
chunk_index
}
"
}
it
'raise an error'
do
begin
uuid
=
Gitlab
::
ExclusiveLease
.
new
(
lease_key
,
timeout:
1
.
day
).
try_obtain
expect
{
subject
}.
to
raise_error
(
'Failed to obtain a lock'
)
ensure
Gitlab
::
ExclusiveLease
.
cancel
(
lease_key
,
uuid
)
end
end
end
end
context
'when data_store is redis'
do
context
'when data_store is redis'
do
let
(
:data_store
)
{
:redis
}
let
(
:data_store
)
{
:redis
}
...
@@ -392,6 +420,8 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
...
@@ -392,6 +420,8 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
expect
(
Ci
::
BuildTraceChunks
::
Database
.
new
.
data
(
build_trace_chunk
)).
to
be_nil
expect
(
Ci
::
BuildTraceChunks
::
Database
.
new
.
data
(
build_trace_chunk
)).
to
be_nil
expect
(
Ci
::
BuildTraceChunks
::
Fog
.
new
.
data
(
build_trace_chunk
)).
to
eq
(
data
)
expect
(
Ci
::
BuildTraceChunks
::
Fog
.
new
.
data
(
build_trace_chunk
)).
to
eq
(
data
)
end
end
it_behaves_like
'Atomic operation'
end
end
context
'when data does not exist'
do
context
'when data does not exist'
do
...
@@ -424,6 +454,8 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
...
@@ -424,6 +454,8 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
expect
(
Ci
::
BuildTraceChunks
::
Database
.
new
.
data
(
build_trace_chunk
)).
to
be_nil
expect
(
Ci
::
BuildTraceChunks
::
Database
.
new
.
data
(
build_trace_chunk
)).
to
be_nil
expect
(
Ci
::
BuildTraceChunks
::
Fog
.
new
.
data
(
build_trace_chunk
)).
to
eq
(
data
)
expect
(
Ci
::
BuildTraceChunks
::
Fog
.
new
.
data
(
build_trace_chunk
)).
to
eq
(
data
)
end
end
it_behaves_like
'Atomic operation'
end
end
context
'when data does not exist'
do
context
'when data does not exist'
do
...
@@ -456,66 +488,56 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
...
@@ -456,66 +488,56 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
expect
(
Ci
::
BuildTraceChunks
::
Database
.
new
.
data
(
build_trace_chunk
)).
to
be_nil
expect
(
Ci
::
BuildTraceChunks
::
Database
.
new
.
data
(
build_trace_chunk
)).
to
be_nil
expect
(
Ci
::
BuildTraceChunks
::
Fog
.
new
.
data
(
build_trace_chunk
)).
to
eq
(
data
)
expect
(
Ci
::
BuildTraceChunks
::
Fog
.
new
.
data
(
build_trace_chunk
)).
to
eq
(
data
)
end
end
it_behaves_like
'Atomic operation'
end
end
end
end
end
end
## TODO:
describe
'deletes data in redis after a parent record destroyed'
do
# describe 'ExclusiveLock' do
let
(
:project
)
{
create
(
:project
)
}
# before do
# allow_any_instance_of(Gitlab::ExclusiveLease).to receive(:try_obtain) { nil }
# stub_const('Ci::BuildTraceChunk::WRITE_LOCK_RETRY', 1)
# end
# it 'raise an error' do
before
do
# expect { build_trace_chunk.append('ABC', 0) }.to raise_error('Failed to obtain write lock')
pipeline
=
create
(
:ci_pipeline
,
project:
project
)
# end
create
(
:ci_build
,
:running
,
:trace_live
,
pipeline:
pipeline
,
project:
project
)
# end
create
(
:ci_build
,
:running
,
:trace_live
,
pipeline:
pipeline
,
project:
project
)
create
(
:ci_build
,
:running
,
:trace_live
,
pipeline:
pipeline
,
project:
project
)
# describe 'deletes data in redis after a parent record destroyed' do
end
# let(:project) { create(:project) }
# before do
# pipeline = create(:ci_pipeline, project: project)
# create(:ci_build, :running, :trace_live, pipeline: pipeline, project: project)
# create(:ci_build, :running, :trace_live, pipeline: pipeline, project: project)
# create(:ci_build, :running, :trace_live, pipeline: pipeline, project: project)
# end
#
shared_examples_for 'deletes all build_trace_chunk and data in redis' do
shared_examples_for
'deletes all build_trace_chunk and data in redis'
do
#
it do
it
do
#
Gitlab::Redis::SharedState.with do |redis|
Gitlab
::
Redis
::
SharedState
.
with
do
|
redis
|
#
expect(redis.scan_each(match: "gitlab:ci:trace:*:chunks:*").to_a.size).to eq(3)
expect
(
redis
.
scan_each
(
match:
"gitlab:ci:trace:*:chunks:*"
).
to_a
.
size
).
to
eq
(
3
)
#
end
end
#
expect(described_class.count).to eq(3)
expect
(
described_class
.
count
).
to
eq
(
3
)
#
subject
subject
#
expect(described_class.count).to eq(0)
expect
(
described_class
.
count
).
to
eq
(
0
)
#
Gitlab::Redis::SharedState.with do |redis|
Gitlab
::
Redis
::
SharedState
.
with
do
|
redis
|
#
expect(redis.scan_each(match: "gitlab:ci:trace:*:chunks:*").to_a.size).to eq(0)
expect
(
redis
.
scan_each
(
match:
"gitlab:ci:trace:*:chunks:*"
).
to_a
.
size
).
to
eq
(
0
)
#
end
end
#
end
end
#
end
end
#
context 'when traces are archived' do
context
'when traces are archived'
do
#
let(:subject) do
let
(
:subject
)
do
#
project.builds.each do |build|
project
.
builds
.
each
do
|
build
|
#
build.success!
build
.
success!
#
end
end
#
end
end
#
it_behaves_like 'deletes all build_trace_chunk and data in redis'
it_behaves_like
'deletes all build_trace_chunk and data in redis'
#
end
end
#
context 'when project is destroyed' do
context
'when project is destroyed'
do
#
let(:subject) do
let
(
:subject
)
do
#
project.destroy!
project
.
destroy!
#
end
end
#
it_behaves_like 'deletes all build_trace_chunk and data in redis'
it_behaves_like
'deletes all build_trace_chunk and data in redis'
#
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