2012-02-05 08:34:29 -05:00
|
|
|
# encoding: utf-8
|
2009-03-10 00:31:04 -04:00
|
|
|
require 'abstract_unit'
|
2012-02-19 23:46:45 -05:00
|
|
|
require 'rbconfig'
|
2009-03-10 00:31:04 -04:00
|
|
|
|
2010-07-29 08:12:25 -04:00
|
|
|
module StaticTests
|
|
|
|
def test_serves_dynamic_content
|
2010-10-04 12:06:04 -04:00
|
|
|
assert_equal "Hello, World!", get("/nofile").body
|
2009-03-10 00:31:04 -04:00
|
|
|
end
|
|
|
|
|
2012-03-08 06:26:10 -05:00
|
|
|
def test_handles_urls_with_bad_encoding
|
|
|
|
assert_equal "Hello, World!", get("/doorkeeper%E3E4").body
|
|
|
|
end
|
|
|
|
|
2011-05-03 06:32:14 -04:00
|
|
|
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
|
|
|
|
|
2010-07-29 08:12:25 -04:00
|
|
|
def test_serves_static_index_at_root
|
2010-10-04 12:06:04 -04:00
|
|
|
assert_html "/index.html", get("/index.html")
|
|
|
|
assert_html "/index.html", get("/index")
|
|
|
|
assert_html "/index.html", get("/")
|
|
|
|
assert_html "/index.html", get("")
|
2009-03-10 00:31:04 -04:00
|
|
|
end
|
|
|
|
|
2010-07-29 08:12:25 -04:00
|
|
|
def test_serves_static_file_in_directory
|
2010-10-04 12:06:04 -04:00
|
|
|
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")
|
2009-03-10 00:31:04 -04:00
|
|
|
end
|
|
|
|
|
2010-07-29 08:12:25 -04:00
|
|
|
def test_serves_static_index_file_in_directory
|
2010-10-04 12:06:04 -04:00
|
|
|
assert_html "/foo/index.html", get("/foo/index.html")
|
|
|
|
assert_html "/foo/index.html", get("/foo/")
|
|
|
|
assert_html "/foo/index.html", get("/foo")
|
2009-03-10 00:31:04 -04:00
|
|
|
end
|
|
|
|
|
2012-02-05 08:34:29 -05:00
|
|
|
def test_served_static_file_with_non_english_filename
|
|
|
|
assert_html "means hello in Japanese\n", get("/foo/#{Rack::Utils.escape("こんにちは.html")}")
|
|
|
|
end
|
|
|
|
|
2012-02-19 23:46:45 -05:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
# Windows doesn't allow \ / : * ? " < > | in filenames
|
|
|
|
unless RbConfig::CONFIG['host_os'] =~ /mswin|mingw/
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
2012-02-16 13:50:07 -05:00
|
|
|
end
|
|
|
|
|
2009-03-10 00:31:04 -04:00
|
|
|
private
|
2010-10-04 12:06:04 -04:00
|
|
|
|
|
|
|
def assert_html(body, response)
|
|
|
|
assert_equal body, response.body
|
|
|
|
assert_equal "text/html", response.headers["Content-Type"]
|
|
|
|
end
|
|
|
|
|
2009-03-10 00:31:04 -04:00
|
|
|
def get(path)
|
2010-10-04 12:06:04 -04:00
|
|
|
Rack::MockRequest.new(@app).request("GET", path)
|
2009-03-10 00:31:04 -04:00
|
|
|
end
|
2012-02-19 23:46:45 -05:00
|
|
|
|
|
|
|
def with_static_file(file)
|
|
|
|
path = "#{FIXTURE_LOAD_PATH}/public" + file
|
|
|
|
File.open(path, "wb+") { |f| f.write(file) }
|
|
|
|
yield file
|
|
|
|
ensure
|
|
|
|
File.delete(path)
|
|
|
|
end
|
2009-03-10 00:31:04 -04:00
|
|
|
end
|
2010-07-29 08:12:25 -04:00
|
|
|
|
|
|
|
class StaticTest < ActiveSupport::TestCase
|
|
|
|
DummyApp = lambda { |env|
|
|
|
|
[200, {"Content-Type" => "text/plain"}, ["Hello, World!"]]
|
|
|
|
}
|
2011-05-03 06:32:14 -04:00
|
|
|
App = ActionDispatch::Static.new(DummyApp, "#{FIXTURE_LOAD_PATH}/public", "public, max-age=60")
|
2010-07-29 08:12:25 -04:00
|
|
|
|
|
|
|
def setup
|
|
|
|
@app = App
|
|
|
|
end
|
|
|
|
|
|
|
|
include StaticTests
|
2012-02-05 08:34:29 -05:00
|
|
|
end
|