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: fdc3433ff0f1462356d5e4c0b731aa9a20d488d2 (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
# 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) { nil }
    let(:nodes) { [kube_node.merge(kube_node_metrics)] }

    subject { described_class.new(cluster).all }

    before do
      stub_kubeclient_nodes_and_nodes_metrics(cluster.platform.api_url)
    end

    context 'when connection to the cluster is successful' do
      let(:expected_nodes) { { nodes: nodes } }

      it { is_expected.to eq(expected_nodes) }
    end

    context 'when there is a connection error' do
      using RSpec::Parameterized::TableSyntax

      where(:error, :error_status) do
        SocketError                             | :kubernetes_connection_error
        OpenSSL::X509::CertificateError         | :kubernetes_authentication_error
        StandardError                           | :unknown_error
        Kubeclient::HttpError.new(408, "", nil) | :kubeclient_http_error
      end

      context 'when there is an error while querying nodes' do
        with_them do
          before do
            allow(cluster.kubeclient).to receive(:get_nodes).and_raise(error)
          end

          it { is_expected.to eq({ node_connection_error: error_status }) }
        end
      end

      context 'when there is an error while querying metrics' do
        with_them do
          before do
            allow(cluster.kubeclient).to receive(:get_nodes).and_return({ response: nodes })
            allow(cluster.kubeclient).to receive(:metrics_client).and_raise(error)
          end

          it { is_expected.to eq({ nodes: nodes, metrics_connection_error: error_status }) }
        end
      end
    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({ node_connection_error: :unknown_error }) }

      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