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

notes_channel_shared_examples.rb « noteable « channels « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb7001a9faf46d3eebda23d03f38f125bff6e7b8 (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

RSpec.shared_examples 'handle subscription based on user access' do
  it 'subscribes to the noteable stream when user has access' do
    subscribe(subscribe_params)

    expect(subscription).to be_confirmed
    expect(subscription).to have_stream_for(noteable)
  end

  it 'rejects the subscription when the user does not have access' do
    stub_action_cable_connection current_user: nil

    subscribe(subscribe_params)

    expect(subscription).to be_rejected
  end

  context 'when action_cable_notes is disabled' do
    before do
      stub_feature_flags(action_cable_notes: false)
    end

    it 'rejects the subscription' do
      subscribe(subscribe_params)

      expect(subscription).to be_rejected
    end
  end
end