1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- require 'rails_helper'
- RSpec.describe Gql::Subscriptions::OrganizationUpdates, type: :graphql do
- let(:agent) { create(:agent) }
- let(:organization) { create(:organization) }
- let(:variables) { { organizationId: gql.id(organization) } }
- let(:mock_channel) { build_mock_channel }
- let(:subscription) do
- <<~QUERY
- subscription organizationUpdates($organizationId: ID!) {
- organizationUpdates(organizationId: $organizationId) {
- organization {
- name
- }
- }
- }
- QUERY
- end
- before do
- gql.execute(subscription, variables: variables, context: { channel: mock_channel })
- end
- shared_examples 'subscribes and receives updates' do
- it 'subscribes' do
- expect(gql.result.data).to eq({ 'organization' => nil })
- end
- it 'receives organization updates' do
- organization.save!
- expect(mock_channel.mock_broadcasted_messages.first.dig(:result, 'data', 'organizationUpdates', 'organization', 'name')).to eq(organization.name)
- end
- end
- context 'with an agent', authenticated_as: :agent do
- context 'with permission' do
- include_examples 'subscribes and receives updates'
- context 'when losing permissions' do
- it 'receives no data anymore' do
- agent.update!(roles: [])
- organization.save!
- expect(mock_channel.mock_broadcasted_messages.first[:result]).to include(
- {
- 'data' => nil,
- 'errors' => include(
- include(
- 'message' => 'not allowed to OrganizationPolicy#show? this Organization',
- ),
- ),
- }
- )
- end
- end
- end
- it_behaves_like 'graphql responds with error if unauthenticated'
- end
- context 'with a customer', authenticated_as: :customer do
- let(:customer) { create(:customer, organization: organization) }
- include_examples 'subscribes and receives updates'
- context 'when losing permissions' do
- let(:customer) { create(:customer) }
- it 'raises an error' do
- expect(gql.result.error_type).to eq(Exceptions::Forbidden)
- end
- end
- end
- end
|