summaryrefslogtreecommitdiff
path: root/spec/features/clusters/cluster_detail_page_spec.rb
blob: 0a9c4bcaf125c9245ce29089adbeff598aa36b39 (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
# frozen_string_literal: true

require 'spec_helper'

describe 'Clusterable > Show page' do
  let(:current_user) { create(:user) }

  before do
    sign_in(current_user)
  end

  shared_examples 'editing domain' do
    before do
      clusterable.add_maintainer(current_user)
    end

    it 'allow the user to set domain' do
      visit cluster_path

      within '#cluster-integration' do
        fill_in('cluster_base_domain', with: 'test.com')
        click_on 'Save changes'
      end

      expect(page.status_code).to eq(200)
      expect(page).to have_content('Kubernetes cluster was successfully updated.')
    end

    context 'when there is a cluster with ingress and external ip' do
      before do
        cluster.create_application_ingress!(external_ip: '192.168.1.100')

        visit cluster_path
      end

      it 'shows help text with the domain as an alternative to custom domain' do
        within '#cluster-integration' do
          expect(page).to have_content('Alternatively 192.168.1.100.nip.io can be used instead of a custom domain')
        end
      end
    end

    context 'when there is no ingress' do
      it 'alternative to custom domain is not shown' do
        visit cluster_path

        within '#cluster-integration' do
          expect(page).not_to have_content('can be used instead of a custom domain.')
        end
      end
    end
  end

  context 'when clusterable is a project' do
    it_behaves_like 'editing domain' do
      let(:clusterable) { create(:project) }
      let(:cluster) { create(:cluster, :provided_by_gcp, :project, projects: [clusterable]) }
      let(:cluster_path) { project_cluster_path(clusterable, cluster) }
    end
  end

  context 'when clusterable is a group' do
    it_behaves_like 'editing domain' do
      let(:clusterable) { create(:group) }
      let(:cluster) { create(:cluster, :provided_by_gcp, :group, groups: [clusterable]) }
      let(:cluster_path) { group_cluster_path(clusterable, cluster) }
    end
  end
end