-
Notifications
You must be signed in to change notification settings - Fork 37
/
coffer_test.go
127 lines (98 loc) · 2.58 KB
/
coffer_test.go
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
package air
import (
"io/ioutil"
"os"
"path/filepath"
"testing"
"github.com/VictoriaMetrics/fastcache"
"github.com/stretchr/testify/assert"
)
func TestNewCoffer(t *testing.T) {
a := New()
c := a.coffer
assert.NotNil(t, c)
assert.NotNil(t, c.a)
assert.NotNil(t, c.loadOnce)
assert.Nil(t, c.watcher)
assert.Nil(t, c.cache)
}
func TestCofferLoad(t *testing.T) {
a := New()
c := a.coffer
c.load()
assert.Nil(t, c.loadError)
assert.NotNil(t, c.watcher)
assert.NotNil(t, c.cache)
}
func TestCofferAsset(t *testing.T) {
a := New()
a.MinifierEnabled = true
a.GzipEnabled = true
a.GzipMinContentLength = 0
dir, err := ioutil.TempDir("", "air.TestCofferAsset")
assert.NoError(t, err)
assert.NotEmpty(t, dir)
defer os.RemoveAll(dir)
a.CofferAssetRoot = dir
c := a.coffer
a1, err := c.asset(filepath.Join(a.CofferAssetRoot, "test.html"))
assert.Error(t, err)
assert.Nil(t, a1)
assert.NoError(t, ioutil.WriteFile(
filepath.Join(a.CofferAssetRoot, "test.html"),
[]byte(`<a href="/">Go Home</a>`),
os.ModePerm,
))
a2, err := c.asset(filepath.Join(a.CofferAssetRoot, "test.html"))
assert.NoError(t, err)
assert.NotNil(t, a2)
a3, err := c.asset(filepath.Join(a.CofferAssetRoot, "test.html"))
assert.NoError(t, err)
assert.NotNil(t, a3)
assert.NoError(t, ioutil.WriteFile(
filepath.Join(a.CofferAssetRoot, "test.html"),
[]byte(`<a href="/">Go Home Again</a>`),
os.ModePerm,
))
a4, err := c.asset(filepath.Join(a.CofferAssetRoot, "test.html"))
assert.NoError(t, err)
assert.NotNil(t, a4)
a5, err := c.asset("test.html")
assert.NoError(t, err)
assert.Nil(t, a5)
assert.NoError(t, ioutil.WriteFile(
filepath.Join(a.CofferAssetRoot, "test.ext"),
[]byte(`<a href="/">Go Home</a>`),
os.ModePerm,
))
a6, err := c.asset(filepath.Join(a.CofferAssetRoot, "test.ext"))
assert.NoError(t, err)
assert.Nil(t, a6)
}
func TestAssetContent(t *testing.T) {
a := New()
a.MinifierEnabled = true
a.GzipEnabled = true
a.GzipMinContentLength = 0
dir, err := ioutil.TempDir("", "air.TestCofferAsset")
assert.NoError(t, err)
assert.NotEmpty(t, dir)
defer os.RemoveAll(dir)
a.CofferAssetRoot = dir
c := a.coffer
assert.NoError(t, ioutil.WriteFile(
filepath.Join(a.CofferAssetRoot, "test.html"),
[]byte(`<a href="/">Go Home</a>`),
os.ModePerm,
))
a1, err := c.asset(filepath.Join(a.CofferAssetRoot, "test.html"))
assert.NoError(t, err)
assert.NotNil(t, a1)
b := a1.content(false)
assert.Equal(t, "<a href=/>Go Home</a>", string(b))
b = a1.content(true)
assert.NotNil(t, b)
c.cache = fastcache.New(c.a.CofferMaxMemoryBytes)
b = a1.content(false)
assert.Nil(t, b)
}