summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/graphql/subscriptions/notes/notes_subscription_shared_examples.rb
blob: 949eb4fb64358692dce7f4d87568657b1d5df7c1 (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
55
56
57
58
# frozen_string_literal: true

RSpec.shared_examples 'graphql notes subscriptions' do
  describe '#resolve' do
    let_it_be(:unauthorized_user) { create(:user) }
    let_it_be(:work_item) { create(:work_item, :task) }
    let_it_be(:note) { create(:note, noteable: work_item, project: work_item.project) }
    let_it_be(:current_user) { work_item.author }
    let_it_be(:noteable_id) { work_item.to_gid }

    subject { resolver.resolve_with_support(noteable_id: noteable_id) }

    context 'on initial subscription' do
      let(:resolver) do
        resolver_instance(described_class, ctx: { current_user: current_user }, subscription_update: false)
      end

      it 'returns nil' do
        expect(subject).to eq(nil)
      end

      context 'when user is unauthorized' do
        let(:current_user) { unauthorized_user }

        it 'raises an exception' do
          expect { subject }.to raise_error(GraphQL::ExecutionError)
        end
      end

      context 'when work_item does not exist' do
        let(:noteable_id) { GlobalID.parse("gid://gitlab/WorkItem/#{non_existing_record_id}") }

        it 'raises an exception' do
          expect { subject }.to raise_error(GraphQL::ExecutionError)
        end
      end
    end

    context 'on subscription updates' do
      let(:resolver) do
        resolver_instance(described_class, obj: note, ctx: { current_user: current_user }, subscription_update: true)
      end

      it 'returns the resolved object' do
        expect(subject).to eq(note)
      end

      context 'when user is unauthorized' do
        let(:current_user) { unauthorized_user }

        it 'unsubscribes the user' do
          # GraphQL::Execution::Execute::Skip is returned when unsubscribed
          expect(subject).to be_an(GraphQL::Execution::Execute::Skip)
        end
      end
    end
  end
end