summaryrefslogtreecommitdiff
path: root/spec/features/projects/terraform_spec.rb
blob: bbc7f675c55361a36160a935d325e09928d8285d (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Terraform', :js, feature_category: :projects do
  let_it_be(:project) { create(:project) }
  let_it_be(:terraform_state) { create(:terraform_state, :locked, :with_version, project: project) }

  context 'when user is a terraform administrator' do
    let(:admin) { project.creator }

    before do
      gitlab_sign_in(admin)
    end

    context 'when user does not have any terraform states and visits the index page' do
      let(:empty_project) { create(:project) }

      before do
        empty_project.add_maintainer(admin)
        visit project_terraform_index_path(empty_project)
      end

      it 'sees an empty state' do
        expect(page).to have_content("Your project doesn't have any Terraform state files")
      end
    end

    context 'when user has a terraform state' do
      context 'when user visits the index page' do
        before do
          visit project_terraform_index_path(project)
        end

        it 'displays a tab with states count' do
          expect(page).to have_content("States #{project.terraform_states.size}")
        end

        it 'displays a table with terraform states' do
          expect(page).to have_selector(
            "[data-testid='terraform-states-table-name']",
            count: project.terraform_states.size
          )
        end

        it 'displays terraform actions dropdown' do
          expect(page).to have_selector(
            '[data-testid*="terraform-state-actions"]',
            count: project.terraform_states.size
          )
        end

        it 'displays terraform information' do
          expect(page).to have_content(terraform_state.name)
        end
      end

      context 'when clicking on the delete button' do
        let(:additional_state) { create(:terraform_state, project: project) }

        it 'removes the state', :aggregate_failures, quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/333640' do
          visit project_terraform_index_path(project)

          expect(page).to have_content(additional_state.name)

          find("[data-testid='terraform-state-actions-#{additional_state.name}']").click
          find("[data-testid='terraform-state-remove']").click
          fill_in "terraform-state-remove-input-#{additional_state.name}", with: additional_state.name
          click_button 'Remove'

          expect(page).to have_content("#{additional_state.name} successfully removed")
          expect { additional_state.reload }.to raise_error ActiveRecord::RecordNotFound
        end
      end

      context 'when clicking on copy Terraform init command' do
        it 'shows the modal with the init command' do
          visit project_terraform_index_path(project)

          expect(page).to have_content(terraform_state.name)

          page.within("[data-testid='terraform-state-actions-#{terraform_state.name}']") do
            click_button class: 'gl-dropdown-toggle'
            click_button 'Copy Terraform init command'
          end

          expect(page).to have_content("To get access to this terraform state from your local computer, run the following command at the command line.")
        end
      end
    end
  end

  context 'when user is a terraform developer' do
    let_it_be(:developer) { create(:user) }

    before do
      project.add_developer(developer)
      gitlab_sign_in(developer)
      visit project_terraform_index_path(project)
    end

    context 'when user visits the index page' do
      it 'displays a table without an action dropdown', :aggregate_failures do
        expect(page).to have_selector(
          "[data-testid='terraform-states-table-name']",
          count: project.terraform_states.size
        )

        expect(page).not_to have_selector("[data-testid*='terraform-state-actions']")
      end
    end
  end
end