#-- copyright # OpenProject is an open source project management software. # Copyright (C) 2012-2020 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-2017 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 docs/COPYRIGHT.rdoc for more details. #++ require File.dirname(__FILE__) + '/../spec_helper' describe MeetingMailer, type: :mailer do let(:role) { FactoryBot.create(:role, permissions: [:view_meetings]) } let(:project) { FactoryBot.create(:project) } let(:author) { FactoryBot.create(:user, member_in_project: project, member_through_role: role) } let(:watcher1) { FactoryBot.create(:user, member_in_project: project, member_through_role: role) } let(:watcher2) { FactoryBot.create(:user, member_in_project: project, member_through_role: role) } let(:meeting) { FactoryBot.create(:meeting, author: author, project: project) } let(:meeting_agenda) do FactoryBot.create(:meeting_agenda, meeting: meeting) end before(:each) do author.pref[:no_self_notified] = false author.save! meeting.participants.merge([meeting.participants.build(user: watcher1, invited: true, attended: false), meeting.participants.build(user: watcher2, invited: true, attended: false)]) meeting.save! end describe 'content_for_review' do let(:mail) { MeetingMailer.content_for_review meeting_agenda, 'agenda', author } # this is needed to call module functions from Redmine::I18n let(:i18n) do class A include Redmine::I18n public :format_date, :format_time end A.new end it 'renders the headers' do expect(mail.subject).to include(meeting.project.name) expect(mail.subject).to include(meeting.title) expect(mail.to).to match_array([author.mail]) expect(mail.from).to eq([Setting.mail_from]) end it 'renders the text body' do check_meeting_mail_content mail.text_part.body end it 'renders the html body' do check_meeting_mail_content mail.html_part.body end context 'with a recipient with another time zone' do let!(:preference) { FactoryBot.create(:user_preference, user: watcher1, time_zone: 'Asia/Tokyo') } let(:mail) { MeetingMailer.content_for_review meeting_agenda, 'agenda', watcher1 } it 'renders the mail with the correcet locale' do expect(mail.text_part.body).to include('Tokyo') expect(mail.text_part.body).to include('GMT+09:00') expect(mail.html_part.body).to include('Tokyo') expect(mail.html_part.body).to include('GMT+09:00') expect(mail.to).to match_array([watcher1.mail]) end end end def check_meeting_mail_content(body) expect(body).to include(meeting.project.name) expect(body).to include(meeting.title) expect(body).to include(i18n.format_date meeting.start_date) expect(body).to include(i18n.format_time meeting.start_time, false) expect(body).to include(i18n.format_time meeting.end_time, false) expect(body).to include(meeting.participants[0].name) expect(body).to include(meeting.participants[1].name) end def save_and_open_mail_html_body(mail) save_and_open_mail_part mail.html_part.body end def save_and_open_mail_text_body(mail) save_and_open_mail_part mail.text_part.body end def save_and_open_mail_part(part) FileUtils.mkdir_p(Rails.root.join('tmp/mails')) page_path = Rails.root.join("tmp/mails/#{SecureRandom.hex(16)}.html").to_s File.open(page_path, 'w') { |f| f.write(part) } Launchy.open(page_path) begin binding.pry rescue NoMethodError debugger end FileUtils.rm(page_path) end end