Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/shared_examples/finders/issues_finder_shared_examples.rb')
-rw-r--r--spec/support/shared_examples/finders/issues_finder_shared_examples.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/spec/support/shared_examples/finders/issues_finder_shared_examples.rb b/spec/support/shared_examples/finders/issues_finder_shared_examples.rb
index 043d6db66d3..a5fee9c5fed 100644
--- a/spec/support/shared_examples/finders/issues_finder_shared_examples.rb
+++ b/spec/support/shared_examples/finders/issues_finder_shared_examples.rb
@@ -269,6 +269,34 @@ RSpec.shared_examples 'issues or work items finder' do |factory, execute_context
end
end
end
+
+ context 'when querying group-level items' do
+ let(:params) { { group_id: group.id, issue_types: %w[issue epic] } }
+
+ it 'includes group-level items' do
+ expect(items).to contain_exactly(item1, item5, group_level_item)
+ end
+
+ context 'when user has access to confidential items' do
+ before do
+ group.add_reporter(user)
+ end
+
+ it 'includes confidential group-level items' do
+ expect(items).to contain_exactly(item1, item5, group_level_item, group_level_confidential_item)
+ end
+ end
+
+ context 'when namespace_level_work_items is disabled' do
+ before do
+ stub_feature_flags(namespace_level_work_items: false)
+ end
+
+ it 'only returns project-level items' do
+ expect(items).to contain_exactly(item1, item5)
+ end
+ end
+ end
end
context 'filtering by author' do