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/spec/lib/journal_formatter/attachment_spec.rb

115 lines
4.5 KiB

#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2022 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 File.expand_path(File.dirname(__FILE__) + '/../../spec_helper.rb')
describe OpenProject::JournalFormatter::Attachment do
include ApplicationHelper
include ActionView::Helpers::TagHelper
# WARNING: the order of the modules is important to ensure that url_for of
# ActionController::UrlWriter is called and not the one of ActionView::Helpers::UrlHelper
include ActionView::Helpers::UrlHelper
include Rails.application.routes.url_helpers
def self.default_url_options
{ only_path: true }
end
let(:klass) { OpenProject::JournalFormatter::Attachment }
let(:instance) { klass.new(journal) }
let(:id) { 1 }
let(:journal) do
OpenStruct.new(id: id)
end
let(:user) { create(:user) }
let(:attachment) do
create(:attachment,
author: user)
end
let(:key) { "attachments_#{attachment.id}" }
describe '#render' do
describe 'WITH the first value being nil, and the second an id as string' do
it 'adds an attachment added text' do
link = "#{Setting.protocol}://#{Setting.host_name}/api/v3/attachments/#{attachment.id}/content"
expect(instance.render(key, [nil, attachment.id.to_s]))
.to eq(I18n.t(:text_journal_added,
label: "<strong>#{I18n.t(:'activerecord.models.attachment')}</strong>",
value: "<a href=\"#{link}\">#{attachment.filename}</a>"))
end
context 'WITH a relative_url_root' do
before do
allow(OpenProject::Configuration)
.to receive(:rails_relative_url_root)
.and_return('/blubs')
end
it 'adds an attachment added text' do
link = "#{Setting.protocol}://#{Setting.host_name}/blubs/api/v3/attachments/#{attachment.id}/content"
expect(instance.render(key, [nil, attachment.id.to_s]))
.to eq(I18n.t(:text_journal_added,
label: "<strong>#{I18n.t(:'activerecord.models.attachment')}</strong>",
value: "<a href=\"#{link}\">#{attachment.filename}</a>"))
end
end
end
describe 'WITH the first value being an id as string, and the second nil' do
let(:expected) do
I18n.t(:text_journal_deleted,
label: "<strong>#{I18n.t(:'activerecord.models.attachment')}</strong>",
old: "<strike><i title=\"#{attachment.id}\">#{attachment.id}</i></strike>")
end
it { expect(instance.render(key, [attachment.id.to_s, nil])).to eq(expected) }
end
describe "WITH the first value being nil, and the second an id as a string
WITH specifying not to output html" do
let(:expected) do
I18n.t(:text_journal_added,
label: I18n.t(:'activerecord.models.attachment'),
value: attachment.id)
end
it { expect(instance.render(key, [nil, attachment.id.to_s], no_html: true)).to eq(expected) }
end
describe "WITH the first value being an id as string, and the second nil,
WITH specifying not to output html" do
let(:expected) do
I18n.t(:text_journal_deleted,
label: I18n.t(:'activerecord.models.attachment'),
old: attachment.id)
end
it { expect(instance.render(key, [attachment.id.to_s, nil], no_html: true)).to eq(expected) }
end
end
end