-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcache_test.go
More file actions
executable file
·77 lines (59 loc) · 1.63 KB
/
cache_test.go
File metadata and controls
executable file
·77 lines (59 loc) · 1.63 KB
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
package turtleware_test
import (
"github.com/kernle32dll/turtleware"
"github.com/stretchr/testify/suite"
"net/http/httptest"
"net/http"
"testing"
"time"
)
type CacheSuite struct {
CommonSuite
request *http.Request
}
func TestCacheSuite(t *testing.T) {
suite.Run(t, &CacheSuite{})
}
func (s *CacheSuite) SetupTest() {
s.request = httptest.NewRequest(http.MethodGet, "https://example.com/foo", http.NoBody)
}
func (s *CacheSuite) Test_ETag_And_Valid_ModDate() {
// given
compDate := time.Date(2017, 6, 14, 12, 5, 3, 0, time.UTC)
s.request.Header.Add("If-Modified-Since", compDate.Format(time.RFC1123))
s.request.Header.Add("If-None-Match", "123")
// when
etag, lastModifiedDate := turtleware.ExtractCacheHeader(s.request)
// then
s.Equal("123", etag)
s.Equal(compDate, lastModifiedDate)
}
func (s *CacheSuite) Test_Only_ETag() {
// given
s.request.Header.Add("If-None-Match", "123")
// when
etag, lastModifiedDate := turtleware.ExtractCacheHeader(s.request)
// then
s.Equal("123", etag)
s.True(lastModifiedDate.IsZero())
}
func (s *CacheSuite) Test_ETag_And_Empty_ModDate() {
// given
s.request.Header.Add("If-Modified-Since", "")
s.request.Header.Add("If-None-Match", "123")
// when
etag, lastModifiedDate := turtleware.ExtractCacheHeader(s.request)
// then
s.Equal("123", etag)
s.True(lastModifiedDate.IsZero())
}
func (s *CacheSuite) Test_ETag_And_Invalid_ModDate() {
// given
s.request.Header.Add("If-Modified-Since", "Käsekuchen")
s.request.Header.Add("If-None-Match", "123")
// when
etag, lastModifiedDate := turtleware.ExtractCacheHeader(s.request)
// then
s.Empty(etag)
s.True(lastModifiedDate.IsZero())
}