blob: b4a25c49c98146538bc0021b670c22feae4ea061 (
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
 | require 'abstract_unit'
module RenderPartial
  class BasicController < ActionController::Base
    self.view_paths = [ActionView::FixtureResolver.new(
      "render_partial/basic/_basic.html.erb"     => "BasicPartial!",
      "render_partial/basic/basic.html.erb"      => "<%= @test_unchanged = 'goodbye' %><%= render :partial => 'basic' %><%= @test_unchanged %>",
      "render_partial/basic/with_json.html.erb"  => "<%= render :partial => 'with_json', :formats => [:json] %>",
      "render_partial/basic/_with_json.json.erb" => "<%= render :partial => 'final', :formats => [:json] %>",
      "render_partial/basic/_final.json.erb"     => "{ final: json }",
      "render_partial/basic/overriden.html.erb"  => "<%= @test_unchanged = 'goodbye' %><%= render :partial => 'overriden' %><%= @test_unchanged %>",
      "render_partial/basic/_overriden.html.erb" => "ParentPartial!",
      "render_partial/child/_overriden.html.erb" => "OverridenPartial!"
    )]
    def html_with_json_inside_json
      render :action => "with_json"
    end
    def changing
      @test_unchanged = 'hello'
      render :action => "basic"
    end
    def overriden
      @test_unchanged = 'hello'
    end
  end
  
  class ChildController < BasicController; end
  class TestPartial < Rack::TestCase
    testing BasicController
    test "rendering a partial in ActionView doesn't pull the ivars again from the controller" do
      get :changing
      assert_response("goodbyeBasicPartial!goodbye")
    end
    test "rendering a template with renders another partial with other format that renders other partial in the same format" do
      get :html_with_json_inside_json
      assert_content_type "text/html; charset=utf-8"
      assert_response "{ final: json }"
    end
  end
  class TestInheritedPartial < Rack::TestCase
    testing ChildController
    test "partial from parent controller gets picked if missing in child one" do
      get :changing
      assert_response("goodbyeBasicPartial!goodbye")
    end
    test "partial from child controller gets picked" do
      get :overriden
      assert_response("goodbyeOverridenPartial!goodbye")
    end
  end
end
 |