# Copyright (C) 2012-2025 Zammad Foundation, https://zammad-foundation.org/ require 'rails_helper' RSpec.describe Gql::Queries::User::Current::Ticket::Overviews, type: :graphql do context 'when fetching ticket overviews' do let(:agent) { create(:agent) } let(:query) do <<~QUERY query userCurrentTicketOverviews($ignoreUserConditions: Boolean!, $withTicketCount: Boolean!) { userCurrentTicketOverviews(ignoreUserConditions: $ignoreUserConditions) { id name link prio orderBy orderDirection viewColumns { key value } orderColumns { key value } active ticketCount @include(if: $withTicketCount) } } QUERY end let(:ignore_user_conditions) { false } let(:with_ticket_count) { false } let(:variables) { { withTicketCount: with_ticket_count, ignoreUserConditions: ignore_user_conditions } } before do create(:user_overview_sorting, overview: Overview.find_by(name: 'My Assigned Tickets'), prio: 2, user: agent) create(:user_overview_sorting, overview: Overview.find_by(name: 'Unassigned & Open Tickets'), prio: 1, user: agent) gql.execute(query, variables: variables) end context 'with an agent', authenticated_as: :agent do it 'has agent overview with personal sorting' do expect(gql.result.data.first).to include('name' => 'Unassigned & Open Tickets', 'link' => 'all_unassigned', 'prio' => 1010, 'active' => true,) end it 'has view and order columns' do expect(gql.result.data.first).to include( 'viewColumns' => include({ 'key' => 'title', 'value' => 'Title' }), 'orderColumns' => include({ 'key' => 'created_at', 'value' => 'Created at' }), ) end context 'with object attributes and unknown attributes', db_strategy: :reset do let(:oa) do create(:object_manager_attribute_text, :required_screen).tap do ObjectManager::Attribute.migration_execute end end # Change the overview to include an object attribute column and a column that has an unknown field. let(:overview) do Overview.find_by('link' => 'my_assigned').tap do |overview| overview.view = { 's' => [oa.name, 'unknown_field'] } overview.save! end end let(:with_ticket_count) do overview false end it 'lists view colummns correctly' do expect(gql.result.data.second).to include( 'viewColumns' => [ { 'key' => oa.name, 'value' => oa.display }, { 'key' => 'unknown_field', 'value' => nil }], ) end end context 'without ticket count' do it 'does not include ticketCount field' do expect(gql.result.data.first).not_to have_key('ticketCount') end end context 'with ticket count' do let(:with_ticket_count) { true } it 'includes ticketCount field' do expect(gql.result.data.first['ticketCount']).to eq(0) end end context 'when not ignoring user conditions' do it 'does not include replacement tickets overview' do expect(gql.result.data).not_to include(include('name' => 'My Replacement Tickets')) end end context 'when ignoring user conditions' do let(:ignore_user_conditions) { true } it 'includes replacement tickets overview' do expect(gql.result.data).to include(include('name' => 'My Replacement Tickets')) end end end context 'with a customer', authenticated_as: :customer do let(:customer) { create(:customer) } it 'has customer overview' do expect(gql.result.data.first).to include('name' => 'My Tickets', 'link' => 'my_tickets', 'prio' => 1100, 'active' => true,) end end it_behaves_like 'graphql responds with error if unauthenticated' end end