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

node_spec.rb « kubernetes « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 732bf29bc44423a11f82155df9a0362a58ea3f84 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Kubernetes::Node do
  include KubernetesHelpers

  describe '#all' do
    let(:cluster) { create(:cluster, :provided_by_user, :group) }
    let(:expected_nodes) { [] }

    before do
      stub_kubeclient_nodes_and_nodes_metrics(cluster.platform.api_url)
    end

    subject { described_class.new(cluster).all }

    context 'when connection to the cluster is successful' do
      let(:expected_nodes) { [kube_node.merge(kube_node_metrics)] }

      it { is_expected.to eq(expected_nodes) }
    end

    context 'when cluster cannot be reached' do
      before do
        allow(cluster.kubeclient.core_client).to receive(:discover)
          .and_raise(SocketError)
      end

      it { is_expected.to eq(expected_nodes) }
    end

    context 'when cluster cannot be authenticated to' do
      before do
        allow(cluster.kubeclient.core_client).to receive(:discover)
          .and_raise(OpenSSL::X509::CertificateError.new('Certificate error'))
      end

      it { is_expected.to eq(expected_nodes) }
    end

    context 'when Kubeclient::HttpError is raised' do
      before do
        allow(cluster.kubeclient.core_client).to receive(:discover)
          .and_raise(Kubeclient::HttpError.new(403, 'Forbidden', nil))
      end

      it { is_expected.to eq(expected_nodes) }
    end

    context 'when an uncategorised error is raised' do
      before do
        allow(cluster.kubeclient.core_client).to receive(:discover)
          .and_raise(StandardError)
      end

      it { is_expected.to eq(expected_nodes) }

      it 'notifies Sentry' do
        expect(Gitlab::ErrorTracking).to receive(:track_exception)
          .with(instance_of(StandardError), hash_including(cluster_id: cluster.id))
          .once

        subject
      end
    end
  end
end