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

cluster_error_entity_spec.rb « serializers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43ec41adf14a4304de7d80bd3e87124975d494f9 (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 ClusterErrorEntity do
  describe '#as_json' do
    let(:cluster) { create(:cluster, :provided_by_user, :group) }

    subject { described_class.new(cluster).as_json }

    context 'when connection_error is present' do
      before do
        allow(cluster).to receive(:connection_error).and_return(:connection_error)
      end

      it { is_expected.to eq({ connection_error: :connection_error, metrics_connection_error: nil, node_connection_error: nil }) }
    end

    context 'when metrics_connection_error is present' do
      before do
        allow(cluster).to receive(:metrics_connection_error).and_return(:http_error)
      end

      it { is_expected.to eq({ connection_error: nil, metrics_connection_error: :http_error, node_connection_error: nil }) }
    end

    context 'when node_connection_error is present' do
      before do
        allow(cluster).to receive(:node_connection_error).and_return(:unknown_error)
      end

      it { is_expected.to eq({ connection_error: nil, metrics_connection_error: nil, node_connection_error: :unknown_error }) }
    end
  end
end