aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/active_record_helper_i18n_test.rb
blob: feec64aa300fd2a9bde8e85a8921e9727e5b504d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
require 'abstract_unit'

class ActiveRecordHelperI18nTest < Test::Unit::TestCase
  include ActionView::Helpers::ActiveRecordHelper
  
  attr_reader :request
  uses_mocha 'active_record_helper_i18n_test' do
    def setup
      @object = stub :errors => stub(:count => 1, :full_messages => ['full_messages'])
      @object_name = 'book'
      stubs(:content_tag).returns 'content_tag'

      I18n.stubs(:t).with(:'header_message', :locale => 'en-US', :scope => [:active_record, :error], :count => 1, :object_name => '').returns "1 error prohibited this  from being saved"
      I18n.stubs(:t).with(:'message', :locale => 'en-US', :scope => [:active_record, :error]).returns 'There were problems with the following fields:'
    end

    def test_error_messages_for_given_a_header_message_option_it_does_not_translate_header_message
      I18n.expects(:translate).with(:'header_message', :locale => 'en-US', :scope => [:active_record, :error], :count => 1, :object_name => '').never
      error_messages_for(:object => @object, :header_message => 'header message', :locale => 'en-US')
    end

    def test_error_messages_for_given_no_header_message_option_it_translates_header_message
      I18n.expects(:t).with(:'header_message', :locale => 'en-US', :scope => [:active_record, :error], :count => 1, :object_name => '').returns 'header message'
      I18n.expects(:t).with('', :default => '').once.returns ''
      error_messages_for(:object => @object, :locale => 'en-US')
    end

    def test_error_messages_for_given_a_message_option_it_does_not_translate_message
      I18n.expects(:t).with(:'message', :locale => 'en-US', :scope => [:active_record, :error]).never
      I18n.expects(:t).with('', :default => '').once.returns ''
      error_messages_for(:object => @object, :message => 'message', :locale => 'en-US')
    end

    def test_error_messages_for_given_no_message_option_it_translates_message
      I18n.expects(:t).with(:'message', :locale => 'en-US', :scope => [:active_record, :error]).returns 'There were problems with the following fields:'
      I18n.expects(:t).with('', :default => '').once.returns ''
      error_messages_for(:object => @object, :locale => 'en-US')
    end
    
    def test_error_messages_for_given_object_name_it_translates_object_name
      I18n.expects(:t).with(:header_message, :locale => 'en-US', :scope => [:active_record, :error], :count => 1, :object_name => @object_name).returns "1 error prohibited this #{@object_name} from being saved"
      I18n.expects(:t).with(@object_name, :default => @object_name).once.returns @object_name
      error_messages_for(:object => @object, :locale => 'en-US', :object_name => @object_name)
    end
  end
end