1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- # Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
- require 'rails_helper'
- RSpec.describe Gql::Queries::OnlineNotifications, authenticated_as: :user, type: :graphql do
- context 'with a notification' do
- let(:user) { create(:agent) }
- let(:notification) { create(:online_notification, user: user) }
- let(:another_user_notification) { create(:online_notification, user: create(:user)) }
- let(:query) do
- <<~QUERY
- query onlineNotifications {
- onlineNotifications {
- edges {
- node {
- id
- createdAt
- createdBy {
- id
- email
- }
- typeName
- objectName
- metaObject {
- ... on Ticket {
- id
- title
- }
- }
- }
- }
- }
- }
- QUERY
- end
- before do
- user.groups << Ticket.first.group
- notification
- another_user_notification
- end
- it 'contains a notification' do
- gql.execute(query)
- returned_ids = gql.result.nodes.pluck('id')
- expect(returned_ids).to contain_exactly(gql.id(notification))
- end
- it 'returns meta object' do
- gql.execute(query)
- expect(gql.result.nodes)
- .to include(include('id' => gql.id(notification), 'metaObject' => include('id' => gql.id(Ticket.first))))
- end
- context 'with notification pointing to inaccessible ticket' do
- let(:inaccessible_ticket) { create(:ticket) }
- let(:inaccessible_notification) { create(:online_notification, user: user, o: inaccessible_ticket) }
- before do
- inaccessible_notification
- end
- it 'returns list' do
- gql.execute(query)
- returned_ids = gql.result.nodes.pluck('id')
- expect(returned_ids).to contain_exactly(gql.id(notification), gql.id(inaccessible_notification))
- end
- it 'returns inaccessible notification with no meta object' do
- gql.execute(query)
- expect(gql.result.nodes)
- .to include(include('id' => gql.id(inaccessible_notification), 'metaObject' => nil, 'createdBy' => nil))
- end
- end
- context 'with some more notifications' do
- let(:notification) { nil }
- let(:another_user_notification) { nil }
- # Don't use relative dates here as they disable generation of unique values.
- let(:notifications) { Array.new(10) { create(:online_notification, user: user, created_at: Faker::Date.unique.between(from: Date.parse('2022-01-01'), to: Date.parse('2024-01-01')).to_datetime) } }
- it 'returns notifications in correct order' do
- notifications
- gql.execute(query)
- expect(gql.result.nodes.pluck('id')).to eq(notifications.sort_by { |n| n[:created_at] }.reverse.map { |n| gql.id(n) })
- end
- end
- end
- end
|