kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
100 lines
3.1 KiB
100 lines
3.1 KiB
#-- encoding: UTF-8
|
|
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2015 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.
|
|
#
|
|
# 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 doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require 'spec_helper'
|
|
|
|
##
|
|
# Shared example expecting #mail_subject and #job to be defined where
|
|
# the former is looked for in the sent email's subject and the latter is
|
|
# the delayed job to be performed.
|
|
# Tests that mail notifications are sent in successful cases,
|
|
# that none are sent but the job finishes nontheless in cases were necessary
|
|
# records are missing (e.g. the user to be notified), and that jobs with any other
|
|
# sort of error fail as expected in order to be rescheduled.
|
|
shared_examples 'a mail notification job' do
|
|
let!(:user) { FactoryGirl.create :user } # user to be notified
|
|
|
|
context 'with all records found' do
|
|
let(:mail_subject) { 'all records found!' }
|
|
|
|
before do
|
|
job.perform
|
|
end
|
|
|
|
it 'sends an email' do
|
|
mail = ActionMailer::Base.deliveries.detect { |m| m.subject.include? mail_subject }
|
|
|
|
expect(mail).to be_present
|
|
end
|
|
end
|
|
|
|
shared_examples 'job cannot find record' do
|
|
it 'does not send an email' do
|
|
job.perform
|
|
mail = ActionMailer::Base.deliveries.detect { |m| m.subject.include? mail_subject }
|
|
|
|
expect(mail).not_to be_present
|
|
end
|
|
|
|
it 'does not raise an error but fails silently' do
|
|
expect { job.perform }.not_to raise_error
|
|
end
|
|
|
|
context 'raising exceptions' do
|
|
before { MailNotificationJob.raise_exceptions = true }
|
|
after { MailNotificationJob.raise_exceptions = false }
|
|
|
|
it 'raises an error' do
|
|
expect { job.perform }.to raise_error(ActiveRecord::RecordNotFound)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'with user not found' do
|
|
let(:mail_subject) { 'no user found :(' }
|
|
|
|
before do
|
|
user.destroy
|
|
end
|
|
|
|
it_behaves_like 'job cannot find record'
|
|
end
|
|
|
|
context 'with unexpected error' do
|
|
let(:mail_subject) { "don't care" }
|
|
|
|
before do
|
|
expect_any_instance_of(Mail::Message).to receive(:deliver).and_raise(SocketError)
|
|
end
|
|
|
|
it 'raises said error' do
|
|
expect { job.perform }.to raise_error(SocketError)
|
|
end
|
|
end
|
|
end
|
|
|