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
bc0c52f2
Commit
bc0c52f2
authored
Mar 08, 2021
by
Christian Couder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor shared examples
parent
92cb13a9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
121 additions
and
271 deletions
+121
-271
ee/spec/services/merge_requests/push_options_handler_service_spec.rb
...vices/merge_requests/push_options_handler_service_spec.rb
+12
-136
spec/services/merge_requests/push_options_handler_service_spec.rb
...vices/merge_requests/push_options_handler_service_spec.rb
+19
-135
spec/support/shared_examples/services/merge_request_shared_examples.rb
...shared_examples/services/merge_request_shared_examples.rb
+90
-0
No files found.
ee/spec/services/merge_requests/push_options_handler_service_spec.rb
View file @
bc0c52f2
...
...
@@ -21,147 +21,23 @@ RSpec.describe MergeRequests::PushOptionsHandlerService do
stub_licensed_features
(
multiple_merge_request_assignees:
true
)
end
shared_examples_for
'a service that can create a merge request'
do
subject
(
:last_mr
)
{
MergeRequest
.
last
}
it
'creates a merge request with the correct target branch'
do
branch
=
push_options
[
:target
]
||
project
.
default_branch
expect
{
service
.
execute
}.
to
change
{
MergeRequest
.
count
}.
by
(
1
)
expect
(
last_mr
.
target_branch
).
to
eq
(
branch
)
end
context
'when project has been forked'
,
:sidekiq_might_not_need_inline
do
let
(
:forked_project
)
{
fork_project
(
project
,
user1
,
repository:
true
)
}
let
(
:service
)
{
described_class
.
new
(
forked_project
,
user1
,
changes
,
push_options
)
}
before
do
allow
(
forked_project
).
to
receive
(
:empty_repo?
).
and_return
(
false
)
end
it
'sets the correct source and target project'
do
service
.
execute
expect
(
last_mr
.
source_project
).
to
eq
(
forked_project
)
expect
(
last_mr
.
target_project
).
to
eq
(
project
)
end
end
end
shared_examples_for
'a service that does not create a merge request'
do
it
do
expect
{
service
.
execute
}.
not_to
change
{
MergeRequest
.
count
}
end
end
# In the non-foss version of GitLab, there can be many assignees
shared_examples_for
'a service that can change assignees of a merge request'
do
|
count
|
subject
(
:last_mr
)
{
MergeRequest
.
last
}
it
'changes assignee count'
do
service
.
execute
expect
(
last_mr
.
assignees
.
count
).
to
eq
(
count
)
end
end
describe
'`assign` push option'
do
let
(
:push_options
)
{
{
assign:
{
user2
.
id
=>
1
,
user3
.
id
=>
1
}
}
}
context
'with a new branch'
do
let
(
:changes
)
{
new_branch_changes
}
it_behaves_like
'a service that does not create a merge request'
it
'adds an error to the service'
do
service
.
execute
expect
(
service
.
errors
).
to
include
(
error_mr_required
)
end
context
'when coupled with the `create` push option in ee'
do
let
(
:push_options
)
{
{
create:
true
,
assign:
{
user2
.
id
=>
1
,
user3
.
id
=>
1
}
}
}
it_behaves_like
'a service that can create a merge request'
it_behaves_like
'a service that can change assignees of a merge request'
,
2
end
end
let
(
:assigned
)
{
{
user2
.
id
=>
1
,
user3
.
id
=>
1
}
}
let
(
:unassigned
)
{
nil
}
let
(
:push_options
)
{
{
assign:
assigned
,
unassign:
unassigned
}
}
context
'with an existing branch but no open MR'
do
let
(
:changes
)
{
existing_branch_changes
}
it_behaves_like
'a service that does not create a merge request'
it
'adds an error to the service'
do
service
.
execute
expect
(
service
.
errors
).
to
include
(
error_mr_required
)
end
context
'when coupled with the `create` push option in ee'
do
let
(
:push_options
)
{
{
create:
true
,
assign:
{
user2
.
id
=>
1
,
user3
.
id
=>
1
}
}
}
it_behaves_like
'a service that can create a merge request'
it_behaves_like
'a service that can change assignees of a merge request'
,
2
end
end
context
'with an existing branch that has a merge request open in ee'
do
let
(
:changes
)
{
existing_branch_changes
}
let!
(
:merge_request
)
{
create
(
:merge_request
,
source_project:
project
,
source_branch:
source_branch
)}
it_behaves_like
'a service that does not create a merge request'
it_behaves_like
'a service that can change assignees of a merge request'
,
2
end
it_behaves_like
'with a new branch'
,
2
it_behaves_like
'with an existing branch but no open MR'
,
2
it_behaves_like
'with an existing branch that has a merge request open'
,
2
end
describe
'`unassign` push option'
do
let
(
:push_options
)
{
{
assign:
{
user2
.
id
=>
1
,
user3
.
id
=>
1
},
unassign:
{
user1
.
id
=>
1
,
user3
.
id
=>
1
}
}
}
context
'with a new branch'
do
let
(
:changes
)
{
new_branch_changes
}
it_behaves_like
'a service that does not create a merge request'
it
'adds an error to the service'
do
service
.
execute
expect
(
service
.
errors
).
to
include
(
error_mr_required
)
end
context
'when coupled with the `create` push option'
do
let
(
:push_options
)
{
{
create:
true
,
assign:
{
user2
.
id
=>
1
,
user3
.
id
=>
1
},
unassign:
{
user1
.
id
=>
1
,
user3
.
id
=>
1
}
}
}
it_behaves_like
'a service that can create a merge request'
it_behaves_like
'a service that can change assignees of a merge request'
,
1
end
end
context
'with an existing branch but no open MR'
do
let
(
:changes
)
{
existing_branch_changes
}
it_behaves_like
'a service that does not create a merge request'
it
'adds an error to the service'
do
service
.
execute
expect
(
service
.
errors
).
to
include
(
error_mr_required
)
end
context
'when coupled with the `create` push option'
do
let
(
:push_options
)
{
{
create:
true
,
assign:
{
user2
.
id
=>
1
,
user3
.
id
=>
1
},
unassign:
{
user1
.
id
=>
1
,
user3
.
id
=>
1
}
}
}
it_behaves_like
'a service that can create a merge request'
it_behaves_like
'a service that can change assignees of a merge request'
,
1
end
end
context
'with an existing branch that has a merge request open'
do
let
(
:changes
)
{
existing_branch_changes
}
let!
(
:merge_request
)
{
create
(
:merge_request
,
source_project:
project
,
source_branch:
source_branch
)}
let
(
:assigned
)
{
{
user2
.
id
=>
1
,
user3
.
id
=>
1
}
}
let
(
:unassigned
)
{
{
user1
.
id
=>
1
,
user3
.
id
=>
1
}
}
let
(
:push_options
)
{
{
assign:
assigned
,
unassign:
unassigned
}
}
it_behaves_like
'a service that does not create a merge request'
it_behaves_like
'a service that can change assignees of a merge request
'
,
1
end
it_behaves_like
'with a new branch'
,
1
it_behaves_like
'with an existing branch but no open MR
'
,
1
it_behaves_like
'with an existing branch that has a merge request open'
,
1
end
end
spec/services/merge_requests/push_options_handler_service_spec.rb
View file @
bc0c52f2
...
...
@@ -29,33 +29,6 @@ RSpec.describe MergeRequests::PushOptionsHandlerService do
stub_licensed_features
(
multiple_merge_request_assignees:
false
)
end
shared_examples_for
'a service that can create a merge request'
do
subject
(
:last_mr
)
{
MergeRequest
.
last
}
it
'creates a merge request with the correct target branch'
do
branch
=
push_options
[
:target
]
||
project
.
default_branch
expect
{
service
.
execute
}.
to
change
{
MergeRequest
.
count
}.
by
(
1
)
expect
(
last_mr
.
target_branch
).
to
eq
(
branch
)
end
context
'when project has been forked'
,
:sidekiq_might_not_need_inline
do
let
(
:forked_project
)
{
fork_project
(
project
,
user1
,
repository:
true
)
}
let
(
:service
)
{
described_class
.
new
(
forked_project
,
user1
,
changes
,
push_options
)
}
before
do
allow
(
forked_project
).
to
receive
(
:empty_repo?
).
and_return
(
false
)
end
it
'sets the correct source and target project'
do
service
.
execute
expect
(
last_mr
.
source_project
).
to
eq
(
forked_project
)
expect
(
last_mr
.
target_project
).
to
eq
(
project
)
end
end
end
shared_examples_for
'a service that can set the target of a merge request'
do
subject
(
:last_mr
)
{
MergeRequest
.
last
}
...
...
@@ -121,23 +94,6 @@ RSpec.describe MergeRequests::PushOptionsHandlerService do
end
end
# In the foss version of GitLab, there can be only one assignee
shared_examples_for
'a service that can change one assignee of a merge request'
do
subject
(
:last_mr
)
{
MergeRequest
.
last
}
it
'changes assignee count'
do
service
.
execute
expect
(
last_mr
.
assignees
.
count
).
to
eq
(
1
)
end
end
shared_examples_for
'a service that does not create a merge request'
do
it
do
expect
{
service
.
execute
}.
not_to
change
{
MergeRequest
.
count
}
end
end
shared_examples_for
'a service that does not update a merge request'
do
it
do
expect
{
service
.
execute
}.
not_to
change
{
MergeRequest
.
maximum
(
:updated_at
)
}
...
...
@@ -618,54 +574,22 @@ RSpec.describe MergeRequests::PushOptionsHandlerService do
end
end
describe
'`assign` push option'
do
let
(
:push_options
)
{
{
assign:
{
user2
.
id
=>
1
,
user3
.
id
=>
1
}
}
}
context
'with a new branch'
do
let
(
:changes
)
{
new_branch_changes
}
it_behaves_like
'a service that does not create a merge request'
it
'adds an error to the service'
do
service
.
execute
expect
(
service
.
errors
).
to
include
(
error_mr_required
)
end
context
'when coupled with the `create` push option in foss'
do
let
(
:push_options
)
{
{
create:
true
,
assign:
{
user2
.
id
=>
1
,
user3
.
id
=>
1
}
}
}
it_behaves_like
'a service that can create a merge request'
it_behaves_like
'a service that can change one assignee of a merge request'
end
end
shared_examples
'with an existing branch that has a merge request open in foss'
do
let
(
:changes
)
{
existing_branch_changes
}
let!
(
:merge_request
)
{
create
(
:merge_request
,
source_project:
project
,
source_branch:
source_branch
)}
context
'with an existing branch but no open MR'
do
let
(
:changes
)
{
existing_branch_changes
}
it_behaves_like
'a service that does not create a merge request'
it
'adds an error to the service'
do
service
.
execute
expect
(
service
.
errors
).
to
include
(
error_mr_required
)
end
context
'when coupled with the `create` push option in foss'
do
let
(
:push_options
)
{
{
create:
true
,
assign:
{
user2
.
id
=>
1
,
user3
.
id
=>
1
}
}
}
it_behaves_like
'a service that can create a merge request'
it_behaves_like
'a service that can change one assignee of a merge request'
end
end
it_behaves_like
'a service that does not create a merge request'
it_behaves_like
'a service that can change assignees of a merge request'
,
1
end
context
'with an existing branch that has a merge request open in foss'
do
let
(
:changes
)
{
existing_branch_changes
}
let!
(
:merge_request
)
{
create
(
:merge_request
,
source_project:
project
,
source_branch:
source_branch
)}
describe
'`assign` push option'
do
let
(
:assigned
)
{
{
user2
.
id
=>
1
,
user3
.
id
=>
1
}
}
let
(
:unassigned
)
{
nil
}
let
(
:push_options
)
{
{
assign:
assigned
,
unassign:
unassigned
}
}
it_behaves_like
'a service that does not create a merge request'
it_behaves_like
'a service that can change one assignee of a merge request'
end
it_behaves_like
'with a new branch'
,
1
it_behaves_like
'with an existing branch but no open MR'
,
1
it_behaves_like
'with an existing branch that has a merge request open in foss'
context
'with a deleted branch'
do
let
(
:changes
)
{
deleted_branch_changes
}
...
...
@@ -681,53 +605,13 @@ RSpec.describe MergeRequests::PushOptionsHandlerService do
end
describe
'`unassign` push option'
do
let
(
:push_options
)
{
{
assign:
{
user2
.
id
=>
1
,
user3
.
id
=>
1
},
unassign:
{
user1
.
id
=>
1
,
user3
.
id
=>
1
}
}
}
context
'with a new branch'
do
let
(
:changes
)
{
new_branch_changes
}
it_behaves_like
'a service that does not create a merge request'
let
(
:assigned
)
{
{
user2
.
id
=>
1
,
user3
.
id
=>
1
}
}
let
(
:unassigned
)
{
{
user1
.
id
=>
1
,
user3
.
id
=>
1
}
}
let
(
:push_options
)
{
{
assign:
assigned
,
unassign:
unassigned
}
}
it
'adds an error to the service'
do
service
.
execute
expect
(
service
.
errors
).
to
include
(
error_mr_required
)
end
context
'when coupled with the `create` push option'
do
let
(
:push_options
)
{
{
create:
true
,
assign:
{
user2
.
id
=>
1
,
user3
.
id
=>
1
},
unassign:
{
user1
.
id
=>
1
,
user3
.
id
=>
1
}
}
}
it_behaves_like
'a service that can create a merge request'
it_behaves_like
'a service that can change one assignee of a merge request'
end
end
context
'with an existing branch but no open MR'
do
let
(
:changes
)
{
existing_branch_changes
}
it_behaves_like
'a service that does not create a merge request'
it
'adds an error to the service'
do
service
.
execute
expect
(
service
.
errors
).
to
include
(
error_mr_required
)
end
context
'when coupled with the `create` push option'
do
let
(
:push_options
)
{
{
create:
true
,
assign:
{
user2
.
id
=>
1
,
user3
.
id
=>
1
},
unassign:
{
user1
.
id
=>
1
,
user3
.
id
=>
1
}
}
}
it_behaves_like
'a service that can create a merge request'
it_behaves_like
'a service that can change one assignee of a merge request'
end
end
context
'with an existing branch that has a merge request open'
do
let
(
:changes
)
{
existing_branch_changes
}
let!
(
:merge_request
)
{
create
(
:merge_request
,
source_project:
project
,
source_branch:
source_branch
)}
it_behaves_like
'a service that does not create a merge request'
it_behaves_like
'a service that can change one assignee of a merge request'
end
it_behaves_like
'with a new branch'
,
1
it_behaves_like
'with an existing branch but no open MR'
,
1
it_behaves_like
'with an existing branch that has a merge request open in foss'
context
'with a deleted branch'
do
let
(
:changes
)
{
deleted_branch_changes
}
...
...
spec/support/shared_examples/services/merge_request_shared_examples.rb
View file @
bc0c52f2
...
...
@@ -73,3 +73,93 @@ RSpec.shared_examples 'merge request reviewers cache counters invalidator' do
described_class
.
new
(
project
,
user
,
{}).
execute
(
merge_request
)
end
end
RSpec
.
shared_examples_for
'a service that can create a merge request'
do
subject
(
:last_mr
)
{
MergeRequest
.
last
}
it
'creates a merge request with the correct target branch'
do
branch
=
push_options
[
:target
]
||
project
.
default_branch
expect
{
service
.
execute
}.
to
change
{
MergeRequest
.
count
}.
by
(
1
)
expect
(
last_mr
.
target_branch
).
to
eq
(
branch
)
end
context
'when project has been forked'
,
:sidekiq_might_not_need_inline
do
let
(
:forked_project
)
{
fork_project
(
project
,
user1
,
repository:
true
)
}
let
(
:service
)
{
described_class
.
new
(
forked_project
,
user1
,
changes
,
push_options
)
}
before
do
allow
(
forked_project
).
to
receive
(
:empty_repo?
).
and_return
(
false
)
end
it
'sets the correct source and target project'
do
service
.
execute
expect
(
last_mr
.
source_project
).
to
eq
(
forked_project
)
expect
(
last_mr
.
target_project
).
to
eq
(
project
)
end
end
end
RSpec
.
shared_examples_for
'a service that does not create a merge request'
do
it
do
expect
{
service
.
execute
}.
not_to
change
{
MergeRequest
.
count
}
end
end
# In the non-foss version of GitLab, there can be many assignees, so
# there 'count' can be something other than 0 or 1. In the foss
# version of GitLab, there can be only one assignee though, so 'count'
# can only be 0 or 1.
RSpec
.
shared_examples_for
'a service that can change assignees of a merge request'
do
|
count
|
subject
(
:last_mr
)
{
MergeRequest
.
last
}
it
'changes assignee count'
do
service
.
execute
expect
(
last_mr
.
assignees
.
count
).
to
eq
(
count
)
end
end
RSpec
.
shared_examples
'with an existing branch that has a merge request open'
do
|
count
|
let
(
:changes
)
{
existing_branch_changes
}
let!
(
:merge_request
)
{
create
(
:merge_request
,
source_project:
project
,
source_branch:
source_branch
)}
it_behaves_like
'a service that does not create a merge request'
it_behaves_like
'a service that can change assignees of a merge request'
,
count
end
RSpec
.
shared_examples
'when coupled with the `create` push option'
do
|
count
|
let
(
:push_options
)
{
{
create:
true
,
assign:
assigned
,
unassign:
unassigned
}
}
it_behaves_like
'a service that can create a merge request'
it_behaves_like
'a service that can change assignees of a merge request'
,
count
end
RSpec
.
shared_examples
'with a new branch'
do
|
count
|
let
(
:changes
)
{
new_branch_changes
}
it_behaves_like
'a service that does not create a merge request'
it
'adds an error to the service'
do
service
.
execute
expect
(
service
.
errors
).
to
include
(
error_mr_required
)
end
it_behaves_like
'when coupled with the `create` push option'
,
count
end
RSpec
.
shared_examples
'with an existing branch but no open MR'
do
|
count
|
let
(
:changes
)
{
existing_branch_changes
}
it_behaves_like
'a service that does not create a merge request'
it
'adds an error to the service'
do
service
.
execute
expect
(
service
.
errors
).
to
include
(
error_mr_required
)
end
it_behaves_like
'when coupled with the `create` push option'
,
count
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