summaryrefslogtreecommitdiff
path: root/spec/features/groups/clusters/eks_spec.rb
blob: fe62efbd3bfe75b1cbfe5bdac6177bdd7d026e1f (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Group AWS EKS Cluster', :js do
  let(:group) { create(:group) }
  let(:user) { create(:user) }

  before do
    group.add_maintainer(user)
    gitlab_sign_in(user)

    allow(Groups::ClustersController).to receive(:STATUS_POLLING_INTERVAL) { 100 }
    allow_any_instance_of(Clusters::Kubernetes::CreateOrUpdateNamespaceService).to receive(:execute)
    allow_any_instance_of(Clusters::Cluster).to receive(:retrieve_connection_status).and_return(:connected)
  end

  context 'when user does not have a cluster and visits group clusters page' do
    before do
      visit group_clusters_path(group)

      click_link 'Connect with a certificate'
    end

    context 'when user creates a cluster on AWS EKS' do
      before do
        click_link 'Amazon EKS'
      end

      it 'user sees a form to create an EKS cluster' do
        expect(page).to have_content('Create new cluster on EKS')
      end
    end
  end
end