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

destroy_spec.rb « job « ci « mutations « graphql « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88dfec41d36551464d49838637d63b43a388b2b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'JobArtifactsDestroy', feature_category: :build_artifacts 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

  it 'returns an error if the user is not allowed to destroy the job artifacts' 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

  it 'destroys the job artifacts and returns the expected data' do
    job.project.add_maintainer(user)
    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
end