Namespace
- MODULE StaticTests::RbConfig
Methods
- S
- T
-
- teardown,
- test_does_not_modify_path_info,
- test_handles_urls_with_ascii_8bit,
- test_handles_urls_with_ascii_8bit_on_win_31j,
- test_handles_urls_with_bad_encoding,
- test_handles_urls_with_null_byte,
- test_served_static_file_with_non_english_filename,
- test_serves_dynamic_content,
- test_serves_file_with_same_name_before_index_in_directory,
- test_serves_files_with_headers,
- test_serves_gzip_files_when_header_set,
- test_serves_gzip_files_with_not_modified,
- test_serves_gzip_with_propper_content_type_fallback,
- test_serves_static_file_in_directory,
- test_serves_static_file_with_ampersand_in_filename,
- test_serves_static_file_with_apostrophe_in_filename,
- test_serves_static_file_with_asterisk,
- test_serves_static_file_with_at_symbol_in_filename,
- test_serves_static_file_with_colon,
- test_serves_static_file_with_comma_in_filename,
- test_serves_static_file_with_dollar_sign_in_filename,
- test_serves_static_file_with_exclamation_mark_in_filename,
- test_serves_static_file_with_parentheses_in_filename,
- test_serves_static_file_with_plus_sign_in_filename,
- test_serves_static_file_with_semi_colon_in_filename,
- test_serves_static_index_at_root,
- test_serves_static_index_file_in_directory,
- test_sets_cache_control
Constants
| DummyApp | = | lambda { |env| [200, {"Content-Type" => "text/plain"}, ["Hello, World!"]] } |
Instance Public methods
setup()
Link
teardown()
Link
test_does_not_modify_path_info()
Link
# File actionpack/test/dispatch/static_test.rb, line 167 def test_does_not_modify_path_info file_name = "/gzip/application-a71b3024f80aea3181c09774ca17e712.js" env = {'PATH_INFO' => file_name, 'HTTP_ACCEPT_ENCODING' => 'gzip', "REQUEST_METHOD" => 'POST'} @app.call(env) assert_equal file_name, env['PATH_INFO'] end
test_handles_urls_with_ascii_8bit()
Link
test_handles_urls_with_ascii_8bit_on_win_31j()
Link
# File actionpack/test/dispatch/static_test.rb, line 35 def test_handles_urls_with_ascii_8bit_on_win_31j silence_warnings do Encoding.default_internal = "Windows-31J" Encoding.default_external = "Windows-31J" end assert_equal "Hello, World!", get("/doorkeeper%E3E4".force_encoding('ASCII-8BIT')).body end
test_handles_urls_with_bad_encoding()
Link
test_handles_urls_with_null_byte()
Link
test_served_static_file_with_non_english_filename()
Link
test_serves_dynamic_content()
Link
test_serves_file_with_same_name_before_index_in_directory()
Link
test_serves_files_with_headers()
Link
# File actionpack/test/dispatch/static_test.rb, line 193 def test_serves_files_with_headers headers = { "Access-Control-Allow-Origin" => 'http://rubyonrails.org', "Cache-Control" => 'public, max-age=60', "X-Custom-Header" => "I'm a teapot" } app = ActionDispatch::Static.new(DummyApp, @root, headers: headers) response = Rack::MockRequest.new(app).request("GET", "/foo/bar.html") assert_equal 'http://rubyonrails.org', response.headers["Access-Control-Allow-Origin"] assert_equal 'public, max-age=60', response.headers["Cache-Control"] assert_equal "I'm a teapot", response.headers["X-Custom-Header"] end
test_serves_gzip_files_when_header_set()
Link
# File actionpack/test/dispatch/static_test.rb, line 149 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()
Link
# File actionpack/test/dispatch/static_test.rb, line 183 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()
Link
# File actionpack/test/dispatch/static_test.rb, line 174 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()
Link
test_serves_static_file_with_ampersand_in_filename()
Link
test_serves_static_file_with_apostrophe_in_filename()
Link
test_serves_static_file_with_asterisk()
Link
test_serves_static_file_with_at_symbol_in_filename()
Link
test_serves_static_file_with_colon()
Link
test_serves_static_file_with_comma_in_filename()
Link
test_serves_static_file_with_dollar_sign_in_filename()
Link
test_serves_static_file_with_exclamation_mark_in_filename()
Link
test_serves_static_file_with_parentheses_in_filename()
Link
test_serves_static_file_with_plus_sign_in_filename()
Link
test_serves_static_file_with_semi_colon_in_filename()
Link
test_serves_static_index_at_root()
Link
test_serves_static_index_file_in_directory()
Link
# File actionpack/test/dispatch/static_test.rb, line 70 def test_serves_static_index_file_in_directory assert_html "/foo/index.html", get("/foo/index.html") assert_html "/foo/index.html", get("/foo/index") assert_html "/foo/index.html", get("/foo/") assert_html "/foo/index.html", get("/foo") end
test_sets_cache_control()
Link
# File actionpack/test/dispatch/static_test.rb, line 47 def test_sets_cache_control app = assert_deprecated do ActionDispatch::Static.new(DummyApp, @root, "public, max-age=60") end response = Rack::MockRequest.new(app).request("GET", "/index.html") assert_html "/index.html", response assert_equal "public, max-age=60", response.headers["Cache-Control"] end