File: response_test.rb

package info (click to toggle)
ruby-rack-cache 1.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 648 kB
  • sloc: ruby: 3,581; makefile: 4
file content (215 lines) | stat: -rw-r--r-- 7,731 bytes parent folder | download
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
require_relative 'test_helper'

describe Rack::Cache::Response do
  before do
    @now = Time.httpdate(Time.now.httpdate)
    @one_hour_ago = Time.httpdate((Time.now - (60**2)).httpdate)
    @one_hour_later = Time.httpdate((Time.now + (60**2)).httpdate)
    @res = Rack::Cache::Response.new(200, {'date' => @now.httpdate}, [])
  end

  after do
    @now, @res, @one_hour_ago = nil
  end

  it 'marks Rack tuples with string typed statuses as cacheable' do
    @res = Rack::Cache::Response.new('200',{'date' => @now.httpdate},[])
    @res.headers['expires'] = @one_hour_later.httpdate
    assert @res.cacheable?
  end

  it 'responds to #to_a with a Rack response tuple' do
    assert @res.respond_to? :to_a
    @res.to_a.must_equal [200, {'date' => @now.httpdate}, []]
  end

  describe '#cache_control' do
    it 'handles multiple name=value pairs' do
      @res.headers['cache-control'] = 'max-age=600, max-stale=300, min-fresh=570'
      @res.cache_control['max-age'].must_equal '600'
      @res.cache_control['max-stale'].must_equal '300'
      @res.cache_control['min-fresh'].must_equal '570'
    end
    it 'removes the header when given an empty hash' do
      @res.headers['cache-control'] = 'max-age=600, must-revalidate'
      @res.cache_control['max-age'].must_equal '600'
      @res.cache_control = {}
      @res.headers.wont_include 'cache-control'
    end
  end

  describe '#validateable?' do
    it 'is true when last-modified header present' do
      @res = Rack::Cache::Response.new(200, {'last-modified' => @one_hour_ago.httpdate}, [])
      assert @res.validateable?
    end
    it 'is true when etag header present' do
      @res = Rack::Cache::Response.new(200, {'etag' => '"12345"'}, [])
      assert @res.validateable?
    end
    it 'is false when no validator is present' do
      @res = Rack::Cache::Response.new(200, {}, [])
      refute @res.validateable?
    end
  end

  describe '#date' do
    it 'uses the Date header if present and parseable' do
      @res = Rack::Cache::Response.new(200, {'date' => @one_hour_ago.httpdate}, [])
      @res.date.must_equal @one_hour_ago
    end
    it 'returns the current time if present but not parseable' do
      @res = Rack::Cache::Response.new(200, {'date' => "Jun, 30 Mon 2014 20:10:46 GMT"}, [])
      @res.date.to_i.must_be_close_to Time.now.to_i, 1
    end
    it 'uses the current time when no Date header present' do
      @res = Rack::Cache::Response.new(200, {}, [])
      @res.date.to_i.must_be_close_to Time.now.to_i, 1
    end
    it 'returns the correct date when the header is modified directly' do
      @res = Rack::Cache::Response.new(200, { 'date' => @one_hour_ago.httpdate }, [])
      @res.date.must_equal @one_hour_ago
      @res.headers['date'] = @now.httpdate
      @res.date.must_equal @now
    end
  end

  describe '#max_age' do
    it 'uses r-maxage cache control directive when present' do
      @res.headers['cache-control'] = 's-maxage=600, max-age=0, r-maxage=100'
      @res.max_age.must_equal 100
    end
    it 'uses s-maxage cache control when no r-maxage directive present' do
      @res.headers['cache-control'] = 's-maxage=600, max-age=0'
      @res.max_age.must_equal 600
    end
    it 'falls back to max-age when no r/s-maxage directive present' do
      @res.headers['cache-control'] = 'max-age=600'
      @res.max_age.must_equal 600
    end
    it 'falls back to expires when no max-age or r/s-maxage directive present' do
      @res.headers['cache-control'] = 'must-revalidate'
      @res.headers['expires'] = @one_hour_later.httpdate
      @res.max_age.must_equal 60 ** 2
    end
    it 'gives a #max_age of nil when no freshness information available' do
      @res.max_age.must_be_nil
    end
  end

  describe '#private=' do
    it 'adds the private cache-control directive when set true' do
      @res.headers['cache-control'] = 'max-age=100'
      @res.private = true
      @res.headers['cache-control'].split(', ').sort.
        must_equal ['max-age=100', 'private']
    end
    it 'removes the public cache-control directive' do
      @res.headers['cache-control'] = 'public, max-age=100'
      @res.private = true
      @res.headers['cache-control'].split(', ').sort.
        must_equal ['max-age=100', 'private']
    end
  end

  describe '#expire!' do
    it 'sets the Age to be equal to the max-age' do
      @res.headers['cache-control'] = 'max-age=100'
      @res.expire!
      @res.headers['age'].must_equal '100'
    end
    it 'sets the Age to be equal to the r-maxage when the three max-age and r/s-maxage present' do
      @res.headers['cache-control'] = 'max-age=100, s-maxage=500, r-maxage=900'
      @res.expire!
      @res.headers['age'].must_equal '900'
    end
    it 'sets the Age to be equal to the s-maxage when both max-age and s-maxage present' do
      @res.headers['cache-control'] = 'max-age=100, s-maxage=500'
      @res.expire!
      @res.headers['age'].must_equal '500'
    end
    it 'does nothing when the response is already stale/expired' do
      @res.headers['cache-control'] = 'max-age=5, s-maxage=500'
      @res.headers['age'] = '1000'
      @res.expire!
      @res.headers['age'].must_equal '1000'
    end
    it 'does nothing when the response does not include freshness information' do
      @res.expire!
      @res.headers.wont_include 'age'
    end
  end

  describe '#ttl' do
    it 'is nil when no expires or cache-control headers present' do
      @res.ttl.must_be_nil
    end
    it 'uses the expires header when no max-age is present' do
      @res.headers['expires'] = (@res.now + (60**2)).httpdate
      @res.ttl.must_be_close_to(60**2, 1)
    end
    it 'returns negative values when expires is in part' do
      @res.ttl.must_be_nil
      @res.headers['expires'] = @one_hour_ago.httpdate
      @res.ttl.must_be :<, 0
    end
    it 'uses the cache-control max-age value when present' do
      @res.headers['cache-control'] = 'max-age=60'
      @res.ttl.must_be_close_to(60, 1)
    end
  end

  describe '#vary' do
    it 'is nil when no Vary header is present' do
      @res.vary.must_be_nil
    end
    it 'returns the literal value of the Vary header' do
      @res.headers['vary'] = 'Foo Bar Baz'
      @res.vary.must_equal 'Foo Bar Baz'
    end
    it 'can be checked for existence using the #vary? method' do
      assert @res.respond_to? :vary?
      refute @res.vary?
      @res.headers['vary'] = '*'
      assert @res.vary?
    end
  end

  describe '#vary_header_names' do
    it 'returns an empty Array when no Vary header is present' do
      assert @res.vary_header_names.empty?
    end
    it 'parses a single header name value' do
      @res.headers['vary'] = 'accept-language'
      @res.vary_header_names.must_equal ['accept-language']
    end
    it 'parses multiple header name values separated by spaces' do
      @res.headers['vary'] = 'accept-language user-agent    x-foo'
      @res.vary_header_names.must_equal \
        ['accept-language', 'user-agent', 'x-foo']
    end

    it 'parses multiple header name values separated by commas' do
      @res.headers['vary'] = 'accept-language,user-agent,    x-foo'
      @res.vary_header_names.must_equal \
        ['accept-language', 'user-agent', 'x-foo']
    end
  end

  describe '#expires' do
    it 'returns nil if there is no expires header' do
      @res.headers['expires'] = nil
      @res.expires.must_be_nil
    end

    it 'returns a Time if the expires header is parseable' do
      @res.headers['expires'] = "Mon, 30 Jun 2014 20:10:46 GMT"
      @res.expires.must_equal Time.at(1404159046)
    end

    it 'returns nil if the expires header is not parseable' do
      @res.headers['expires'] = "Jun, 30 Mon 2014 20:10:46 GMT"
      @res.expires.must_be_nil
    end
  end
end