#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2018 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-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.expand_path(File.dirname(__FILE__) + '/../../spec_helper.rb')
describe OpenProject::JournalFormatter::CustomField do
include CustomFieldsHelper
include ActionView::Helpers::TagHelper
let(:klass) { OpenProject::JournalFormatter::CustomField }
let(:instance) { klass.new(journal) }
let(:id) { 1 }
let(:journal) do
OpenStruct.new(id: id)
end
let(:user) { FactoryBot.create(:user) }
let(:custom_field) { FactoryBot.create(:issue_custom_field) }
let(:key) { "custom_fields_#{custom_field.id}" }
describe '#render' do
describe 'WITH the first value beeing nil, and the second a valid value as string' do
let(:values) { [nil, '1'] }
let(:formatted_value) { format_value(values.last, custom_field) }
let(:expected) do
I18n.t(:text_journal_set_to,
label: "#{custom_field.name}",
value: "#{formatted_value}")
end
it { expect(instance.render(key, values)).to eq(expected) }
end
describe 'WITH the first value beeing a valid value as a string, and the second beeing a valid value as a string' do
let(:values) { ['0', '1'] }
let(:old_formatted_value) { format_value(values.first, custom_field) }
let(:new_formatted_value) { format_value(values.last, custom_field) }
let(:expected) do
I18n.t(:text_journal_changed,
label: "#{custom_field.name}",
old: "#{old_formatted_value}",
new: "#{new_formatted_value}")
end
it { expect(instance.render(key, values)).to eq(expected) }
end
describe 'WITH the first value beeing a valid value as a string, and the second beeing nil' do
let(:values) { ['0', nil] }
let(:formatted_value) { format_value(values.first, custom_field) }
let(:expected) do
I18n.t(:text_journal_deleted,
label: "#{custom_field.name}",
old: "#{formatted_value}")
end
it { expect(instance.render(key, values)).to eq(expected) }
end
describe "WITH the first value beeing nil, and the second a valid value as string
WITH no html requested" do
let(:values) { [nil, '1'] }
let(:expected) do
I18n.t(:text_journal_set_to,
label: custom_field.name,
value: format_value(values.last, custom_field))
end
it { expect(instance.render(key, values, no_html: true)).to eq(expected) }
end
describe "WITH the first value beeing a valid value as a string, and the second beeing a valid value as a string
WITH no html requested" do
let(:values) { ['0', '1'] }
let(:expected) do
I18n.t(:text_journal_changed,
label: custom_field.name,
old: format_value(values.first, custom_field),
new: format_value(values.last, custom_field))
end
it { expect(instance.render(key, values, no_html: true)).to eq(expected) }
end
describe "WITH the first value beeing a valid value as a string, and the second beeing nil
WITH no html requested" do
let(:values) { ['0', nil] }
let(:expected) do
I18n.t(:text_journal_deleted,
label: custom_field.name,
old: format_value(values.first, custom_field))
end
it { expect(instance.render(key, values, no_html: true)).to eq(expected) }
end
describe "WITH the first value beeing nil, and the second a valid value as string
WITH the custom field beeing deleted" do
let(:values) { [nil, '1'] }
let(:key) { 'custom_values0' }
let(:expected) do
I18n.t(:text_journal_set_to,
label: "#{I18n.t(:label_deleted_custom_field)}",
value: "#{values.last}")
end
it { expect(instance.render(key, values)).to eq(expected) }
end
describe "WITH the first value beeing a valid value as a string, and the second beeing a valid value as a string
WITH the custom field beeing deleted" do
let(:values) { ['0', '1'] }
let(:key) { 'custom_values0' }
let(:expected) do
I18n.t(:text_journal_changed,
label: "#{I18n.t(:label_deleted_custom_field)}",
old: "#{values.first}",
new: "#{values.last}")
end
it { expect(instance.render(key, values)).to eq(expected) }
end
describe "WITH the first value beeing a valid value as a string, and the second beeing nil
WITH the custom field beeing deleted" do
let(:values) { ['0', nil] }
let(:key) { 'custom_values0' }
let(:expected) do
I18n.t(:text_journal_deleted,
label: "#{I18n.t(:label_deleted_custom_field)}",
old: "#{values.first}")
end
it { expect(instance.render(key, values)).to eq(expected) }
end
end
end