aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/test/template/output_buffer_test.rb
blob: 9016b744899b889dd5dbe7fc6b58e70434479a15 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                   


                                    
     





                                                
                                                




                                                

                                                




                                                                

                                                  



                                           


                                                            

                                                              





                                                           

                     
                                            


                  
                                     
       
   
require 'abstract_unit'

class OutputBufferTest < ActionController::TestCase
  class TestController < ActionController::Base
    def index
      render :text => 'foo'
    end
  end

  tests TestController

  def setup
    get :index
    assert_equal ['foo'], body_parts
  end

  test 'output buffer is nil after rendering' do
    assert_nil output_buffer
  end

  test 'flushing ignores nil output buffer' do
    @controller.view_context.flush_output_buffer
    assert_nil output_buffer
    assert_equal ['foo'], body_parts
  end

  test 'flushing ignores empty output buffer' do
    @controller.view_context.output_buffer = ''
    @controller.view_context.flush_output_buffer
    assert_equal '', output_buffer
    assert_equal ['foo'], body_parts
  end

  test 'flushing appends the output buffer to the body parts' do
    @controller.view_context.output_buffer = 'bar'
    @controller.view_context.flush_output_buffer
    assert_equal '', output_buffer
    assert_equal ['foo', 'bar'], body_parts
  end

  if '1.9'.respond_to?(:force_encoding)
    test 'flushing preserves output buffer encoding' do
      original_buffer = ' '.force_encoding(Encoding::EUC_JP)
      @controller.view_context.output_buffer = original_buffer
      @controller.view_context.flush_output_buffer
      assert_equal ['foo', original_buffer], body_parts
      assert_not_equal original_buffer, output_buffer
      assert_equal Encoding::EUC_JP, output_buffer.encoding
    end
  end

  protected
    def output_buffer
      @controller.view_context.output_buffer
    end

    def body_parts
      @controller.response.body_parts
    end
end