aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/static_test.rb
blob: e086d99b192fdc779fa77617d6a298223c2bced6 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# encoding: utf-8
require 'abstract_unit'

module StaticTests
  def test_serves_dynamic_content
    assert_equal "Hello, World!", get("/nofile").body
  end

  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

  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

  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

  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

  def test_served_static_file_with_non_english_filename
    assert_html "means hello in Japanese\n", get("/foo/#{Rack::Utils.escape("こんにちは.html")}")
  end

  def test_serves_static_file_with_encoded_pchar
    assert_html "/foo/foo!bar.html", get("/foo/foo%21bar.html")
    assert_html "/foo/foo$bar.html", get("/foo/foo%24bar.html")
    assert_html "/foo/foo&bar.html", get("/foo/foo%26bar.html")
    assert_html "/foo/foo'bar.html", get("/foo/foo%27bar.html")
    assert_html "/foo/foo(bar).html", get("/foo/foo%28bar%29.html")
    assert_html "/foo/foo*bar.html", get("/foo/foo%2Abar.html")
    assert_html "/foo/foo+bar.html", get("/foo/foo%2Bbar.html")
    assert_html "/foo/foo,bar.html", get("/foo/foo%2Cbar.html")
    assert_html "/foo/foo;bar.html", get("/foo/foo%3Bbar.html")
    assert_html "/foo/foo:bar.html", get("/foo/foo%3Abar.html")
    assert_html "/foo/foo@bar.html", get("/foo/foo%40bar.html")
  end

  def test_serves_static_file_with_unencoded_pchar
    assert_html "/foo/foo!bar.html", get("/foo/foo!bar.html")
    assert_html "/foo/foo$bar.html", get("/foo/foo$bar.html")
    assert_html "/foo/foo&bar.html", get("/foo/foo&bar.html")
    assert_html "/foo/foo'bar.html", get("/foo/foo'bar.html")
    assert_html "/foo/foo(bar).html", get("/foo/foo(bar).html")
    assert_html "/foo/foo*bar.html", get("/foo/foo*bar.html")
    assert_html "/foo/foo+bar.html", get("/foo/foo+bar.html")
    assert_html "/foo/foo,bar.html", get("/foo/foo,bar.html")
    assert_html "/foo/foo;bar.html", get("/foo/foo;bar.html")
    assert_html "/foo/foo:bar.html", get("/foo/foo:bar.html")
    assert_html "/foo/foo@bar.html", get("/foo/foo@bar.html")
  end

  private

    def assert_html(body, response)
      assert_equal body, response.body
      assert_equal "text/html", response.headers["Content-Type"]
    end

    def get(path)
      Rack::MockRequest.new(@app).request("GET", path)
    end
end

class StaticTest < ActiveSupport::TestCase
  DummyApp = lambda { |env|
    [200, {"Content-Type" => "text/plain"}, ["Hello, World!"]]
  }
  App = ActionDispatch::Static.new(DummyApp, "#{FIXTURE_LOAD_PATH}/public", "public, max-age=60")

  def setup
    @app = App
  end

  include StaticTests
end