summaryrefslogtreecommitdiff
path: root/spec/requests/api/graphql/mutations/ci/job/artifacts_destroy_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/requests/api/graphql/mutations/ci/job/artifacts_destroy_spec.rb')
-rw-r--r--spec/requests/api/graphql/mutations/ci/job/artifacts_destroy_spec.rb85
1 files changed, 85 insertions, 0 deletions
diff --git a/spec/requests/api/graphql/mutations/ci/job/artifacts_destroy_spec.rb b/spec/requests/api/graphql/mutations/ci/job/artifacts_destroy_spec.rb
new file mode 100644
index 00000000000..bdad80995ea
--- /dev/null
+++ b/spec/requests/api/graphql/mutations/ci/job/artifacts_destroy_spec.rb
@@ -0,0 +1,85 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe 'JobArtifactsDestroy' do
+ include GraphqlHelpers
+
+ let_it_be(:user) { create(:user) }
+ let_it_be(:job) { create(:ci_build) }
+
+ let(:mutation) do
+ variables = {
+ id: job.to_global_id.to_s
+ }
+ graphql_mutation(:job_artifacts_destroy, variables, <<~FIELDS)
+ job {
+ name
+ }
+ destroyedArtifactsCount
+ errors
+ FIELDS
+ end
+
+ before do
+ create(:ci_job_artifact, :archive, job: job)
+ create(:ci_job_artifact, :junit, job: job)
+ end
+
+ context 'when the user is not allowed to destroy the job artifacts' do
+ it 'returns an error' do
+ post_graphql_mutation(mutation, current_user: user)
+
+ expect(graphql_errors).not_to be_empty
+ expect(job.reload.job_artifacts.count).to be(2)
+ end
+ end
+
+ context 'when the user is allowed to destroy the job artifacts' do
+ before do
+ job.project.add_maintainer(user)
+ end
+
+ it 'destroys the job artifacts and returns the expected data' do
+ expected_data = {
+ 'jobArtifactsDestroy' => {
+ 'errors' => [],
+ 'destroyedArtifactsCount' => 2,
+ 'job' => {
+ 'name' => job.name
+ }
+ }
+ }
+
+ post_graphql_mutation(mutation, current_user: user)
+
+ expect(response).to have_gitlab_http_status(:success)
+ expect(graphql_data).to eq(expected_data)
+ expect(job.reload.job_artifacts.count).to be(0)
+ end
+
+ context 'when the the project this job belongs to is undergoing stats refresh' do
+ it 'destroys no artifacts and returns the correct error' do
+ allow_next_found_instance_of(Project) do |project|
+ allow(project).to receive(:refreshing_build_artifacts_size?).and_return(true)
+ end
+
+ expected_data = {
+ 'jobArtifactsDestroy' => {
+ 'errors' => ['Action temporarily disabled. The project this job belongs to is undergoing stats refresh.'],
+ 'destroyedArtifactsCount' => 0,
+ 'job' => {
+ 'name' => job.name
+ }
+ }
+ }
+
+ post_graphql_mutation(mutation, current_user: user)
+
+ expect(response).to have_gitlab_http_status(:success)
+ expect(graphql_data).to eq(expected_data)
+ expect(job.reload.job_artifacts.count).to be(2)
+ end
+ end
+ end
+end