aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/new_base/render_text_test.rb
blob: f845b4c9cc6912d57de631be36af8e7116af385d (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
require File.join(File.expand_path(File.dirname(__FILE__)), "test_helper")

module HappyPath
  
  class RenderTextController < ActionController::Base2
    def render_hello_world_from_variable
      @person = "david"
      render :text => "hello #{@person}"
    end
    
    def render_custom_code
      render :text => "hello world", :status => 404
    end
    
    def render_with_custom_code_as_string
      render :text => "hello world", :status => "404 Not Found"
    end
    
    def render_text_with_nil
      render :text => nil
    end
    
    def render_text_with_nil_and_status
      render :text => nil, :status => 403
    end

    def render_text_with_false
      render :text => false
    end
  end
  
  class TestSimpleTextRender < SimpleRouteCase    
    describe "Rendering text from a action with default options"
    
    get "/happy_path/render_text/render_hello_world_from_variable"
    assert_body   "hello david"
    assert_status 200
  end
  
  class TestTextRenderWithStatus < SimpleRouteCase
    describe "Rendering text, while also providing a custom status code"
    
    get "/happy_path/render_text/render_custom_code"
    assert_body   "hello world"
    assert_status 404
  end
  
  class TestTextRenderWithNil < SimpleRouteCase
    describe "Rendering text with nil returns a single space character"
    
    get "/happy_path/render_text/render_text_with_nil"
    assert_body   " "
    assert_status 200
  end
  
  class TestTextRenderWithNilAndStatus < SimpleRouteCase
    describe "Rendering text with nil and custom status code returns a single space character with the status"
    
    get "/happy_path/render_text/render_text_with_nil_and_status"
    assert_body   " "
    assert_status 403
  end
  
  class TestTextRenderWithFalse < SimpleRouteCase
    describe "Rendering text with false returns the string 'false'"
    
    get "/happy_path/render_text/render_text_with_false"
    assert_body   "false"
    assert_status 200
  end
end