#-- copyright # OpenProject is a project management system. # Copyright (C) 2012-2014 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 File.expand_path(File.dirname(__FILE__) + "/../../spec_helper.rb") describe OpenProject::JournalFormatter::CustomField do include CustomFieldsHelper include ActionView::Helpers::TagHelper Struct.new("TestJournal", :id) let(:klass) { OpenProject::JournalFormatter::CustomField } let(:instance) { klass.new(journal) } let(:id) { 1 } let(:journal) do Struct::TestJournal.new(id) end let(:user) { FactoryGirl.create(:user) } let(:custom_field) { FactoryGirl.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(:expected) { I18n.t(:text_journal_set_to, :label => "#{custom_field.name}", :value => "#{ format_value(values.last, custom_field.field_format) }") } 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(:expected) { I18n.t(:text_journal_changed, :label => "#{custom_field.name}", :old => "#{ format_value(values.first, custom_field.field_format) }", :new => "#{ format_value(values.last, custom_field.field_format) }") } 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(:expected) { I18n.t(:text_journal_deleted, :label => "#{custom_field.name}", :old => "#{ format_value(values.first, custom_field.field_format) }") } 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) { I18n.t(:text_journal_set_to, :label => "#{custom_field.name}", :value => "#{ format_value(values.last, custom_field.field_format) }") } 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) { I18n.t(:text_journal_changed, :label => "#{custom_field.name}", :old => "#{ format_value(values.first, custom_field.field_format) }", :new => "#{ format_value(values.last, custom_field.field_format) }") } 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) { I18n.t(:text_journal_deleted, :label => "#{custom_field.name}", :old => "#{ format_value(values.first, custom_field.field_format) }") } 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) { I18n.t(:text_journal_set_to, :label => "#{I18n.t(:label_deleted_custom_field)}", :value => "#{ values.last }") } 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) { I18n.t(:text_journal_changed, :label => "#{I18n.t(:label_deleted_custom_field)}", :old => "#{ values.first }", :new => "#{ values.last }") } 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) { I18n.t(:text_journal_deleted, :label => "#{I18n.t(:label_deleted_custom_field)}", :old => "#{ values.first }") } it { expect(instance.render(key, values)).to eq(expected) } end end end