Namespace
Methods
S
T
Instance Public methods
setup()
# File actionpack/test/dispatch/static_test.rb, line 6
def setup
  @default_internal_encoding = Encoding.default_internal
  @default_external_encoding = Encoding.default_external
end
teardown()
# File actionpack/test/dispatch/static_test.rb, line 11
def teardown
  Encoding.default_internal = @default_internal_encoding
  Encoding.default_external = @default_external_encoding
end
test_does_not_modify_path_info()
# File actionpack/test/dispatch/static_test.rb, line 155
def test_does_not_modify_path_info
  file_name = "/gzip/application-a71b3024f80aea3181c09774ca17e712.js"
  env = {'PATH_INFO' => file_name, 'HTTP_ACCEPT_ENCODING' => 'gzip'}
  @app.call(env)
  assert_equal file_name, env['PATH_INFO']
end
test_handles_urls_with_ascii_8bit()
# File actionpack/test/dispatch/static_test.rb, line 24
def test_handles_urls_with_ascii_8bit
  assert_equal "Hello, World!", get("/doorkeeper%E3E4".force_encoding('ASCII-8BIT')).body
end
test_handles_urls_with_ascii_8bit_on_win_31j()
# File actionpack/test/dispatch/static_test.rb, line 28
def test_handles_urls_with_ascii_8bit_on_win_31j
  Encoding.default_internal = "Windows-31J"
  Encoding.default_external = "Windows-31J"
  assert_equal "Hello, World!", get("/doorkeeper%E3E4".force_encoding('ASCII-8BIT')).body
end
test_handles_urls_with_bad_encoding()
# File actionpack/test/dispatch/static_test.rb, line 20
def test_handles_urls_with_bad_encoding
  assert_equal "Hello, World!", get("/doorkeeper%E3E4").body
end
test_handles_urls_with_null_byte()
# File actionpack/test/dispatch/static_test.rb, line 34
def test_handles_urls_with_null_byte
  assert_equal "Hello, World!", get("/doorkeeper%00").body
end
test_served_static_file_with_non_english_filename()
# File actionpack/test/dispatch/static_test.rb, line 67
def test_served_static_file_with_non_english_filename
  jruby_skip "Stop skipping if following bug gets fixed: "        "http://jira.codehaus.org/browse/JRUBY-7192"
  assert_html "means hello in Japanese\n", get("/foo/#{Rack::Utils.escape("こんにちは.html")}")
end
test_serves_dynamic_content()
# File actionpack/test/dispatch/static_test.rb, line 16
def test_serves_dynamic_content
  assert_equal "Hello, World!", get("/nofile").body
end
test_serves_file_with_same_name_before_index_in_directory()
# File actionpack/test/dispatch/static_test.rb, line 63
def test_serves_file_with_same_name_before_index_in_directory
  assert_html "/bar.html", get("/bar")
end
test_serves_gzip_files_when_header_set()
# File actionpack/test/dispatch/static_test.rb, line 137
def test_serves_gzip_files_when_header_set
  file_name = "/gzip/application-a71b3024f80aea3181c09774ca17e712.js"
  response  = get(file_name, 'HTTP_ACCEPT_ENCODING' => 'gzip')
  assert_gzip  file_name, response
  assert_equal 'application/javascript', response.headers['Content-Type']
  assert_equal 'Accept-Encoding',        response.headers["Vary"]
  assert_equal 'gzip',                   response.headers["Content-Encoding"]

  response  = get(file_name, 'HTTP_ACCEPT_ENCODING' => 'Gzip')
  assert_gzip  file_name, response

  response  = get(file_name, 'HTTP_ACCEPT_ENCODING' => 'GZIP')
  assert_gzip  file_name, response

  response  = get(file_name, 'HTTP_ACCEPT_ENCODING' => '')
  assert_not_equal 'gzip', response.headers["Content-Encoding"]
end
test_serves_gzip_files_with_not_modified()
# File actionpack/test/dispatch/static_test.rb, line 171
def test_serves_gzip_files_with_not_modified
  file_name = "/gzip/application-a71b3024f80aea3181c09774ca17e712.js"
  last_modified = File.mtime(File.join(@root, "#{file_name}.gz"))
  response = get(file_name, 'HTTP_ACCEPT_ENCODING' => 'gzip', 'HTTP_IF_MODIFIED_SINCE' => last_modified.httpdate)
  assert_equal 304, response.status
  assert_equal nil, response.headers['Content-Type']
  assert_equal nil, response.headers['Content-Encoding']
  assert_equal nil, response.headers['Vary']
end
test_serves_gzip_with_propper_content_type_fallback()
# File actionpack/test/dispatch/static_test.rb, line 162
def test_serves_gzip_with_propper_content_type_fallback
  file_name = "/gzip/foo.zoo"
  response  = get(file_name, 'HTTP_ACCEPT_ENCODING' => 'gzip')
  assert_gzip  file_name, response

  default_response = get(file_name) # no gzip
  assert_equal default_response.headers['Content-Type'], response.headers['Content-Type']
end
test_serves_static_file_in_directory()
# File actionpack/test/dispatch/static_test.rb, line 51
def test_serves_static_file_in_directory
  assert_html "/foo/bar.html", get("/foo/bar.html")
  assert_html "/foo/bar.html", get("/foo/bar/")
  assert_html "/foo/bar.html", get("/foo/bar")
end
test_serves_static_file_with_ampersand_in_filename()
# File actionpack/test/dispatch/static_test.rb, line 88
def test_serves_static_file_with_ampersand_in_filename
  with_static_file "/foo/foo&bar.html" do |file|
    assert_html file, get("/foo/foo%26bar.html")
    assert_html file, get("/foo/foo&bar.html")
  end
end
test_serves_static_file_with_apostrophe_in_filename()
# File actionpack/test/dispatch/static_test.rb, line 95
def test_serves_static_file_with_apostrophe_in_filename
  with_static_file "/foo/foo'bar.html" do |file|
    assert_html file, get("/foo/foo%27bar.html")
    assert_html file, get("/foo/foo'bar.html")
  end
end
test_serves_static_file_with_asterisk()
# File actionpack/test/dispatch/static_test.rb, line 190
def test_serves_static_file_with_asterisk
  with_static_file "/foo/foo*bar.html" do |file|
    assert_html file, get("/foo/foo%2Abar.html")
    assert_html file, get("/foo/foo*bar.html")
  end
end
test_serves_static_file_with_at_symbol_in_filename()
# File actionpack/test/dispatch/static_test.rb, line 130
def test_serves_static_file_with_at_symbol_in_filename
  with_static_file "/foo/foo@bar.html" do |file|
    assert_html file, get("/foo/foo%40bar.html")
    assert_html file, get("/foo/foo@bar.html")
  end
end
test_serves_static_file_with_colon()
# File actionpack/test/dispatch/static_test.rb, line 183
def test_serves_static_file_with_colon
  with_static_file "/foo/foo:bar.html" do |file|
    assert_html file, get("/foo/foo%3Abar.html")
    assert_html file, get("/foo/foo:bar.html")
  end
end
test_serves_static_file_with_comma_in_filename()
# File actionpack/test/dispatch/static_test.rb, line 116
def test_serves_static_file_with_comma_in_filename
  with_static_file "/foo/foo,bar.html" do |file|
    assert_html file, get("/foo/foo%2Cbar.html")
    assert_html file, get("/foo/foo,bar.html")
  end
end
test_serves_static_file_with_dollar_sign_in_filename()
# File actionpack/test/dispatch/static_test.rb, line 81
def test_serves_static_file_with_dollar_sign_in_filename
  with_static_file "/foo/foo$bar.html" do |file|
    assert_html file, get("/foo/foo%24bar.html")
    assert_html file, get("/foo/foo$bar.html")
  end
end
test_serves_static_file_with_exclamation_mark_in_filename()
# File actionpack/test/dispatch/static_test.rb, line 74
def test_serves_static_file_with_exclamation_mark_in_filename
  with_static_file "/foo/foo!bar.html" do |file|
    assert_html file, get("/foo/foo%21bar.html")
    assert_html file, get("/foo/foo!bar.html")
  end
end
test_serves_static_file_with_parentheses_in_filename()
# File actionpack/test/dispatch/static_test.rb, line 102
def test_serves_static_file_with_parentheses_in_filename
  with_static_file "/foo/foo(bar).html" do |file|
    assert_html file, get("/foo/foo%28bar%29.html")
    assert_html file, get("/foo/foo(bar).html")
  end
end
test_serves_static_file_with_plus_sign_in_filename()
# File actionpack/test/dispatch/static_test.rb, line 109
def test_serves_static_file_with_plus_sign_in_filename
  with_static_file "/foo/foo+bar.html" do |file|
    assert_html file, get("/foo/foo%2Bbar.html")
    assert_html file, get("/foo/foo+bar.html")
  end
end
test_serves_static_file_with_semi_colon_in_filename()
# File actionpack/test/dispatch/static_test.rb, line 123
def test_serves_static_file_with_semi_colon_in_filename
  with_static_file "/foo/foo;bar.html" do |file|
    assert_html file, get("/foo/foo%3Bbar.html")
    assert_html file, get("/foo/foo;bar.html")
  end
end
test_serves_static_index_at_root()
# File actionpack/test/dispatch/static_test.rb, line 44
def test_serves_static_index_at_root
  assert_html "/index.html", get("/index.html")
  assert_html "/index.html", get("/index")
  assert_html "/index.html", get("/")
  assert_html "/index.html", get("")
end
test_serves_static_index_file_in_directory()
# File actionpack/test/dispatch/static_test.rb, line 57
def test_serves_static_index_file_in_directory
  assert_html "/foo/index.html", get("/foo/index.html")
  assert_html "/foo/index.html", get("/foo/")
  assert_html "/foo/index.html", get("/foo")
end
test_sets_cache_control()
# File actionpack/test/dispatch/static_test.rb, line 38
def test_sets_cache_control
  response = get("/index.html")
  assert_html "/index.html", response
  assert_equal "public, max-age=60", response.headers["Cache-Control"]
end