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...

125 lines
4.3 KiB

#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2021 the OpenProject GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2013 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# 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 COPYRIGHT and LICENSE files for more details.
#++
require 'spec_helper'
describe MeetingContentsController do
shared_let(:role) { create(:role, permissions: [:view_meetings]) }
shared_let(:project) { create(:project) }
shared_let(:author) { create(:user, member_in_project: project, member_through_role: role) }
shared_let(:watcher1) { create(:user, member_in_project: project, member_through_role: role) }
shared_let(:watcher2) { create(:user, member_in_project: project, member_through_role: role) }
shared_let(:meeting) do
User.execute_as author do
create(:meeting, author: author, project: project)
end
end
shared_let(:meeting_agenda) do
User.execute_as author do
create(:meeting_agenda, meeting: meeting)
end
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' }
before do
author.save!
end
it_behaves_like 'delivered by mail' do
let(:mail_count) { 2 }
end
context 'with an error during deliver' do
before do
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' }
before do
author.save!
end
it_behaves_like 'delivered by mail' do
let(:mail_count) { 3 }
end
context 'with an error during deliver' do
before do
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