OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/modules/meeting/spec/controllers/meeting_contents_controller...

142 lines
4.7 KiB

#-- copyright
# OpenProject Meeting Plugin
#
# Copyright (C) 2011-2014 the OpenProject Foundation (OPF)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See doc/COPYRIGHT.md for more details.
#++
require 'spec_helper'
describe MeetingContentsController do
shared_let(:role) { FactoryBot.create(:role, permissions: [:view_meetings]) }
shared_let(:project) { FactoryBot.create(:project) }
shared_let(:author) { FactoryBot.create(:user, member_in_project: project, member_through_role: role) }
shared_let(:watcher1) { FactoryBot.create(:user, member_in_project: project, member_through_role: role) }
shared_let(:watcher2) { FactoryBot.create(:user, member_in_project: project, member_through_role: role) }
shared_let(:meeting) { FactoryBot.create(:meeting, author: author, project: project) }
shared_let(:meeting_agenda) do
FactoryBot.create(:meeting_agenda, meeting: meeting)
end
before(:each) do
ActionMailer::Base.deliveries = []
allow_any_instance_of(MeetingContentsController).to receive(:find_content)
allow(controller).to receive(:authorize)
meeting.participants.merge([meeting.participants.build(user: watcher1, invited: true, attended: false),
meeting.participants.build(user: watcher2, invited: true, attended: false)])
meeting.save!
controller.instance_variable_set(:@content, meeting_agenda.meeting.agenda)
controller.instance_variable_set(:@content_type, 'meeting_agenda')
end
shared_examples_for 'delivered by mail' do
before { put action, params: { meeting_id: meeting.id } }
it { expect(ActionMailer::Base.deliveries.count).to eql(mail_count) }
end
describe 'PUT' do
describe 'notify' do
let(:action) { 'notify' }
context 'when author no_self_notified property is true' do
before do
author.pref[:no_self_notified] = true
author.save!
end
it_behaves_like 'delivered by mail' do
let(:mail_count) { 2 }
end
end
context 'when author no_self_notified property is false' do
before do
author.pref[:no_self_notified] = false
author.save!
end
it_behaves_like 'delivered by mail' do
let(:mail_count) { 3 }
end
end
context 'with an error during deliver' do
before do
author.pref[:no_self_notified] = false
author.save!
allow(MeetingMailer).to receive(:content_for_review).and_raise(Net::SMTPError)
end
it 'does not raise an error' do
expect { put 'notify', params: { meeting_id: meeting.id } }.to_not raise_error
end
it 'produces a flash message containing the mail addresses raising the error' do
put 'notify', params: { meeting_id: meeting.id }
meeting.participants.each do |participant|
expect(flash[:error]).to include(participant.name)
end
end
end
end
describe 'icalendar' do
let(:action) { 'icalendar' }
context 'when author no_self_notified property is true' do
before do
author.pref[:no_self_notified] = true
author.save!
end
it_behaves_like 'delivered by mail' do
let(:mail_count) { 3 }
end
end
context 'when author no_self_notified property is false' do
before do
author.pref[:no_self_notified] = false
author.save!
end
it_behaves_like 'delivered by mail' do
let(:mail_count) { 3 }
end
end
context 'with an error during deliver' do
before do
author.pref[:no_self_notified] = false
author.save!
allow(MeetingMailer).to receive(:content_for_review).and_raise(Net::SMTPError)
end
it 'does not raise an error' do
expect { put 'notify', params: { meeting_id: meeting.id } }.to_not raise_error
end
it 'produces a flash message containing the mail addresses raising the error' do
put 'notify', params: { meeting_id: meeting.id }
meeting.participants.each do |participant|
expect(flash[:error]).to include(participant.name)
end
end
end
end
end
end