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

update_spec.rb « image_ttl_group_policy « dependency_proxy « mutations « graphql « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9e9a22ee0b48b5f5ffc9a7163dd5c2b071fa820 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Updating the dependency proxy image ttl policy' do
  include GraphqlHelpers
  using RSpec::Parameterized::TableSyntax

  let_it_be(:user) { create(:user) }

  let(:params) do
    {
      group_path: group.full_path,
      enabled: false,
      ttl: 2
    }
  end

  let(:mutation) do
    graphql_mutation(:update_dependency_proxy_image_ttl_group_policy, params) do
      <<~QL
        dependencyProxyImageTtlPolicy {
          enabled
          ttl
        }
        errors
      QL
    end
  end

  let(:mutation_response) { graphql_mutation_response(:update_dependency_proxy_image_ttl_group_policy) }
  let(:ttl_policy_response) { mutation_response['dependencyProxyImageTtlPolicy'] }

  before do
    stub_config(dependency_proxy: { enabled: true })
  end

  describe 'post graphql mutation' do
    subject { post_graphql_mutation(mutation, current_user: user) }

    let_it_be(:ttl_policy, reload: true) { create(:image_ttl_group_policy) }
    let_it_be(:group, reload: true) { ttl_policy.group }

    context 'without permission' do
      it 'returns no response' do
        subject

        expect(response).to have_gitlab_http_status(:success)
        expect(mutation_response).to be_nil
      end
    end

    context 'with permission' do
      before do
        group.add_developer(user)
      end

      it 'returns the updated dependency proxy image ttl policy', :aggregate_failures do
        subject

        expect(response).to have_gitlab_http_status(:success)
        expect(mutation_response['errors']).to be_empty
        expect(ttl_policy_response).to include(
          'enabled' => params[:enabled],
          'ttl' => params[:ttl]
        )
      end
    end
  end
end