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-04-28 21:10:12 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-04-28 21:10:12 +0300
commit52e32e255f7d868c4ec952a201bb8813b5e03703 (patch)
tree4b1678207027093c6f0cf0ad0dfa07979fad2092 /spec/serializers
parent42d13aebd3c47671337d871e8b349385dade5252 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/serializers')
-rw-r--r--spec/serializers/pipeline_details_entity_spec.rb32
1 files changed, 31 insertions, 1 deletions
diff --git a/spec/serializers/pipeline_details_entity_spec.rb b/spec/serializers/pipeline_details_entity_spec.rb
index 5756656d146..41357212632 100644
--- a/spec/serializers/pipeline_details_entity_spec.rb
+++ b/spec/serializers/pipeline_details_entity_spec.rb
@@ -32,7 +32,7 @@ RSpec.describe PipelineDetailsEntity do
expect(subject[:details])
.to include :duration, :finished_at
expect(subject[:details])
- .to include :stages, :artifacts, :manual_actions, :scheduled_actions
+ .to include :stages, :artifacts, :has_downloadable_artifacts, :manual_actions, :scheduled_actions
expect(subject[:details][:status]).to include :icon, :favicon, :text, :label
end
@@ -186,5 +186,35 @@ RSpec.describe PipelineDetailsEntity do
end
it_behaves_like 'public artifacts'
+
+ context 'when pipeline has downloadable artifacts' do
+ subject(:entity) { described_class.represent(pipeline, request: request, disable_artifacts: disable_artifacts).as_json }
+
+ let_it_be(:pipeline) { create(:ci_pipeline, :with_codequality_reports) }
+
+ context 'when disable_artifacts is true' do
+ subject(:entity) { described_class.represent(pipeline, request: request, disable_artifacts: true).as_json }
+
+ it 'excludes artifacts data' do
+ expect(entity[:details]).not_to include(:artifacts)
+ end
+
+ it 'returns true for has_downloadable_artifacts' do
+ expect(entity[:details][:has_downloadable_artifacts]).to eq(true)
+ end
+ end
+
+ context 'when disable_artifacts is false' do
+ subject(:entity) { described_class.represent(pipeline, request: request, disable_artifacts: false).as_json }
+
+ it 'includes artifacts data' do
+ expect(entity[:details]).to include(:artifacts)
+ end
+
+ it 'returns true for has_downloadable_artifacts' do
+ expect(entity[:details][:has_downloadable_artifacts]).to eq(true)
+ end
+ end
+ end
end
end