summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/health_checks/master_check_spec.rb
blob: dcfc733d5addb31d990c91a68c377c33792d0e1c (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
# frozen_string_literal: true

require 'spec_helper'
require_relative './simple_check_shared'

describe Gitlab::HealthChecks::MasterCheck do
  let(:result_class) { Gitlab::HealthChecks::Result }

  before do
    stub_const('SUCCESS_CODE', 100)
    stub_const('FAILURE_CODE', 101)
    described_class.register_master
  end

  after do
    described_class.finish_master
  end

  describe '#readiness' do
    context 'when master is running' do
      it 'worker does return success' do
        _, child_status = run_worker

        expect(child_status.exitstatus).to eq(SUCCESS_CODE)
      end
    end

    context 'when master finishes early' do
      before do
        described_class.send(:close_write)
      end

      it 'worker does return failure' do
        _, child_status = run_worker

        expect(child_status.exitstatus).to eq(FAILURE_CODE)
      end
    end

    def run_worker
      pid = fork do
        described_class.register_worker

        exit(described_class.readiness.success ? SUCCESS_CODE : FAILURE_CODE)
      end

      Process.wait2(pid)
    end
  end
end