aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/template_object_test.rb
blob: 7adcde421f521fee3ffb8f5d2bf43fa93de22574 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
require 'abstract_unit'

class TemplateObjectTest < Test::Unit::TestCase
  LOAD_PATH_ROOT = File.join(File.dirname(__FILE__), '..', 'fixtures')
  ActionView::TemplateFinder.process_view_paths(LOAD_PATH_ROOT)
  
  class TemplateTest < Test::Unit::TestCase
    def setup
      @view = ActionView::Base.new(LOAD_PATH_ROOT)
      @path = "test/hello_world.erb"
    end
    
    def test_should_create_valid_template
      template = ActionView::Template.new(@view, @path, true)
      
      assert_kind_of ActionView::TemplateHandlers::ERB, template.handler
      assert_equal "test/hello_world.erb", template.path
      assert_nil template.instance_variable_get(:"@source")
      assert_equal "erb", template.extension
    end
    
    uses_mocha 'Template preparation tests' do
      
      def test_should_prepare_template_properly
        template = ActionView::Template.new(@view, @path, true)
        view = template.instance_variable_get(:"@view")
        
        view.expects(:evaluate_assigns)
        template.handler.expects(:compile_template).with(template)
        view.expects(:method_names).returns({})
        
        template.prepare!
      end
      
    end
  end
  
  class PartialTemplateTest < Test::Unit::TestCase
    def setup
      @view = ActionView::Base.new(LOAD_PATH_ROOT)
      @path = "test/partial_only"
    end
    
    def test_should_create_valid_partial_template
      template = ActionView::PartialTemplate.new(@view, @path, nil)
      
      assert_equal "test/_partial_only", template.path
      assert_equal :partial_only, template.variable_name
      
      assert template.locals.has_key?(:object)
      assert template.locals.has_key?(:partial_only)
    end
    
    uses_mocha 'Partial template preparation tests' do
      def test_should_prepare_on_initialization
        ActionView::PartialTemplate.any_instance.expects(:prepare!)
        template = ActionView::PartialTemplate.new(@view, @path, 1)
      end
    end
  end
  
  class PartialTemplateFallbackTest < Test::Unit::TestCase
    def setup
      @view = ActionView::Base.new(LOAD_PATH_ROOT)
      @path = 'test/layout_for_partial'
    end

    def test_default
      template = ActionView::PartialTemplate.new(@view, @path, nil)
      assert_equal 'test/_layout_for_partial', template.path
      assert_equal 'erb', template.extension
      assert_equal :html, @view.template_format
    end

    def test_js
      @view.template_format = :js
      template = ActionView::PartialTemplate.new(@view, @path, nil)
      assert_equal 'test/_layout_for_partial', template.path
      assert_equal 'erb', template.extension
      assert_equal :html, @view.template_format
    end

    def test_xml
      @view.template_format = :xml
      assert_raise ActionView::MissingTemplate do
        ActionView::PartialTemplate.new(@view, @path, nil)
      end
    end
  end
end