summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/storage_check/response_spec.rb
blob: 0ff2963e44340e90e0dbcc1060fb030b96701a21 (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
require 'spec_helper'

describe Gitlab::StorageCheck::Response do
  let(:fake_json) do
    {
      check_interval: 42,
      results: [
        { storage: 'working', success: true },
        { storage: 'skipped', success: nil },
        { storage: 'failing', success: false }
      ]
    }.to_json
  end

  let(:fake_http_response) do
    fake_response = instance_double("Excon::Response - Status check")
    allow(fake_response).to receive(:status).and_return(200)
    allow(fake_response).to receive(:body).and_return(fake_json)
    allow(fake_response).to receive(:headers).and_return('Content-Type' => 'application/json')

    fake_response
  end
  let(:response) { described_class.new(fake_http_response) }

  describe '#valid?' do
    it 'is valid for a success response with parseable JSON' do
      expect(response).to be_valid
    end
  end

  describe '#check_interval' do
    it 'returns the result from the JSON' do
      expect(response.check_interval).to eq(42)
    end
  end

  describe '#responsive_shards' do
    it 'contains the names of working shards' do
      expect(response.responsive_shards).to contain_exactly('working')
    end
  end

  describe '#skipped_shards' do
    it 'contains the names of skipped shards' do
      expect(response.skipped_shards).to contain_exactly('skipped')
    end
  end

  describe '#failing_shards' do
    it 'contains the name of failing shards' do
      expect(response.failing_shards).to contain_exactly('failing')
    end
  end
end