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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-10-28 03:10:09 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-10-28 03:10:09 +0300
commit0c4afb9f5620604d74f88b52bfff6a3dce459429 (patch)
tree0e2f338f772b2d051c2769a8c3b1d5996995e297 /spec/support/shared_examples/requests/api/graphql/packages
parent69eadbe425dc040e72a173a6d96a22dd8836031b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/support/shared_examples/requests/api/graphql/packages')
-rw-r--r--spec/support/shared_examples/requests/api/graphql/packages/package_details_shared_examples.rb37
1 files changed, 35 insertions, 2 deletions
diff --git a/spec/support/shared_examples/requests/api/graphql/packages/package_details_shared_examples.rb b/spec/support/shared_examples/requests/api/graphql/packages/package_details_shared_examples.rb
index 41a61ba5fd7..2faeb1a534b 100644
--- a/spec/support/shared_examples/requests/api/graphql/packages/package_details_shared_examples.rb
+++ b/spec/support/shared_examples/requests/api/graphql/packages/package_details_shared_examples.rb
@@ -2,9 +2,42 @@
RSpec.shared_examples 'a package detail' do
it_behaves_like 'a working graphql query' do
- it 'matches the JSON schema' do
- expect(package_details).to match_schema('graphql/packages/package_details')
+ it_behaves_like 'matching the package details schema'
+ end
+
+ context 'with pipelines' do
+ let_it_be(:build_info1) { create(:package_build_info, :with_pipeline, package: package) }
+ let_it_be(:build_info2) { create(:package_build_info, :with_pipeline, package: package) }
+ let_it_be(:build_info3) { create(:package_build_info, :with_pipeline, package: package) }
+
+ it_behaves_like 'a working graphql query' do
+ it_behaves_like 'matching the package details schema'
end
+
+ context 'with packages_remove_cross_joins_to_pipelines disabled' do
+ # subject is called in a before callback that is executed before the one below
+ # the callback below MUST be executed before the subject
+ # solution: nullify subject and manually call #post_graphql
+ subject {}
+
+ before do
+ stub_feature_flags(packages_remove_cross_joins_to_pipelines: false)
+
+ ::Gitlab::Database.allow_cross_joins_across_databases(url: 'https://gitlab.com/gitlab-org/gitlab/-/issues/342921') do
+ post_graphql(query, current_user: user)
+ end
+ end
+
+ it_behaves_like 'a working graphql query' do
+ it_behaves_like 'matching the package details schema'
+ end
+ end
+ end
+end
+
+RSpec.shared_examples 'matching the package details schema' do
+ it 'matches the JSON schema' do
+ expect(package_details).to match_schema('graphql/packages/package_details')
end
end