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

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

require 'spec_helper'

RSpec.describe Gitlab::Database::LoadBalancing::ActionCableCallbacks, :request_store do
  describe '.wrapper' do
    it 'uses primary and then releases the connection and clears the session' do
      expect(Gitlab::Database::LoadBalancing).to receive(:release_hosts)
      expect(Gitlab::Database::LoadBalancing::Session).to receive(:clear_session)

      described_class.wrapper.call(
        nil,
        lambda do
          expect(Gitlab::Database::LoadBalancing::Session.current.use_primary?).to eq(true)
        end
      )
    end

    context 'with an exception' do
      it 'releases the connection and clears the session' do
        expect(Gitlab::Database::LoadBalancing).to receive(:release_hosts)
        expect(Gitlab::Database::LoadBalancing::Session).to receive(:clear_session)

        expect do
          described_class.wrapper.call(nil, lambda { raise 'test_exception' })
        end.to raise_error('test_exception')
      end
    end
  end
end