|
| 1 | +# frozen_string_literal: true |
| 2 | + |
| 3 | +#-- copyright |
| 4 | +# OpenProject is an open source project management software. |
| 5 | +# Copyright (C) the OpenProject GmbH |
| 6 | +# |
| 7 | +# This program is free software; you can redistribute it and/or |
| 8 | +# modify it under the terms of the GNU General Public License version 3. |
| 9 | +# |
| 10 | +# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: |
| 11 | +# Copyright (C) 2006-2013 Jean-Philippe Lang |
| 12 | +# Copyright (C) 2010-2013 the ChiliProject Team |
| 13 | +# |
| 14 | +# This program is free software; you can redistribute it and/or |
| 15 | +# modify it under the terms of the GNU General Public License |
| 16 | +# as published by the Free Software Foundation; either version 2 |
| 17 | +# of the License, or (at your option) any later version. |
| 18 | +# |
| 19 | +# This program is distributed in the hope that it will be useful, |
| 20 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | +# GNU General Public License for more details. |
| 23 | +# |
| 24 | +# You should have received a copy of the GNU General Public License |
| 25 | +# along with this program; if not, write to the Free Software |
| 26 | +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 27 | +# |
| 28 | +# See COPYRIGHT and LICENSE files for more details. |
| 29 | +#++ |
| 30 | + |
| 31 | +require "spec_helper" |
| 32 | + |
| 33 | +RSpec.describe Queries::Meetings::Filters::AttendedUserFilter do |
| 34 | + it_behaves_like "basic query filter" do |
| 35 | + let(:type) { :list_optional } |
| 36 | + let(:class_key) { :attended_user_id } |
| 37 | + let(:human_name) { I18n.t(:label_attended_user) } |
| 38 | + |
| 39 | + describe "#available?" do |
| 40 | + it "is true" do |
| 41 | + expect(instance).to be_available |
| 42 | + end |
| 43 | + end |
| 44 | + |
| 45 | + describe "#allowed_values" do |
| 46 | + it "is nil" do |
| 47 | + expect(instance.allowed_values).to be_nil |
| 48 | + end |
| 49 | + end |
| 50 | + end |
| 51 | + |
| 52 | + describe "#where clause" do |
| 53 | + let(:user1) { create(:user) } |
| 54 | + let(:user2) { create(:user) } |
| 55 | + let(:project) { create(:project) } |
| 56 | + let(:meeting1) { create(:meeting, project:) } |
| 57 | + let(:meeting2) { create(:meeting, project:) } |
| 58 | + let(:meeting3) { create(:meeting, project:) } |
| 59 | + let(:meeting4) { create(:meeting, project:) } |
| 60 | + let!(:empty_meeting) do |
| 61 | + create(:meeting, project:).tap { |meeting| meeting.participants.delete_all } |
| 62 | + end |
| 63 | + |
| 64 | + let!(:participant1) { create(:meeting_participant, :attendee, meeting: meeting1, user: user1) } |
| 65 | + let!(:participant2) { create(:meeting_participant, :attendee, meeting: meeting2, user: user2) } |
| 66 | + let!(:participant3) { create(:meeting_participant, :invitee, meeting: meeting3, user: user1) } |
| 67 | + let!(:participant4) { create(:meeting_participant, :invitee, meeting: meeting4, user: user2) } |
| 68 | + |
| 69 | + let(:instance) do |
| 70 | + described_class.create!(name: :attended_user_id, operator:, values:) |
| 71 | + end |
| 72 | + |
| 73 | + context 'for "="' do |
| 74 | + let(:operator) { "=" } |
| 75 | + let(:values) { [user1.id.to_s] } |
| 76 | + |
| 77 | + it "finds meetings where the user attended" do |
| 78 | + expect(instance.where).to include("#{MeetingParticipant.table_name}.user_id") |
| 79 | + |
| 80 | + meetings = Meeting.left_outer_joins(:participants).where(instance.where) |
| 81 | + |
| 82 | + expect(meetings).to include(meeting1) |
| 83 | + expect(meetings).not_to include(meeting2) |
| 84 | + expect(meetings).not_to include(meeting3) |
| 85 | + expect(meetings).not_to include(meeting4) |
| 86 | + end |
| 87 | + end |
| 88 | + |
| 89 | + context 'for "!"' do |
| 90 | + let(:operator) { "!" } |
| 91 | + let(:values) { [user1.id.to_s] } |
| 92 | + |
| 93 | + it "finds meetings where the user did not attend" do |
| 94 | + expect(instance.where).to include("NOT") |
| 95 | + |
| 96 | + meetings = Meeting.left_outer_joins(:participants).where(instance.where) |
| 97 | + expect(meetings.pluck(:id)).to contain_exactly(meeting2.id, empty_meeting.id, meeting3.id, meeting4.id) |
| 98 | + end |
| 99 | + end |
| 100 | + |
| 101 | + context 'for "*"' do |
| 102 | + let(:operator) { "*" } |
| 103 | + let(:values) { [] } |
| 104 | + |
| 105 | + it "finds meetings with any attendee" do |
| 106 | + meetings = Meeting.left_outer_joins(:participants).where(instance.where) |
| 107 | + |
| 108 | + expect(meetings).to include(meeting1) |
| 109 | + expect(meetings).to include(meeting2) |
| 110 | + expect(meetings).not_to include(meeting3) |
| 111 | + expect(meetings).not_to include(meeting4) |
| 112 | + end |
| 113 | + end |
| 114 | + |
| 115 | + context 'for "!*"' do |
| 116 | + let(:operator) { "!*" } |
| 117 | + let(:values) { [] } |
| 118 | + |
| 119 | + it "finds meetings with no attendees" do |
| 120 | + meetings = Meeting.left_outer_joins(:participants).where(instance.where) |
| 121 | + |
| 122 | + expect(meetings).not_to include(meeting1) |
| 123 | + expect(meetings).not_to include(meeting2) |
| 124 | + expect(meetings).to include(meeting3) |
| 125 | + expect(meetings).to include(meeting4) |
| 126 | + end |
| 127 | + end |
| 128 | + end |
| 129 | +end |
0 commit comments