File: create_spec.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (60 lines) | stat: -rw-r--r-- 1,746 bytes parent folder | download
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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Create Environment', feature_category: :environment_management do
  include GraphqlHelpers

  let_it_be(:project) { create(:project, :repository) }
  let_it_be(:developer) { create(:user, maintainer_of: project) }
  let_it_be(:reporter) { create(:user, reporter_of: project) }

  let(:current_user) { developer }

  let(:mutation) do
    graphql_mutation(:environment_create, input)
  end

  context 'when creating an environment' do
    let(:input) do
      {
        project_path: project.full_path,
        name: 'production',
        external_url: 'https://gitlab.com/'
      }
    end

    it 'creates successfully' do
      post_graphql_mutation(mutation, current_user: current_user)

      expect(graphql_mutation_response(:environment_create)['environment']['name']).to eq('production')
      expect(graphql_mutation_response(:environment_create)['environment']['externalUrl']).to eq('https://gitlab.com/')
      expect(graphql_mutation_response(:environment_create)['errors']).to be_empty
    end

    context 'when current user is reporter' do
      let(:current_user) { reporter }

      it 'returns error' do
        post_graphql_mutation(mutation, current_user: current_user)

        expect(graphql_errors.to_s)
          .to include("The resource that you are attempting to access does not exist or you don't have permission")
      end
    end
  end

  context 'when name is missing' do
    let(:input) do
      {
        project_path: project.full_path
      }
    end

    it 'returns error' do
      post_graphql_mutation(mutation, current_user: current_user)

      expect(graphql_errors.to_s).to include("Expected value to not be null")
    end
  end
end