-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_helpers.go
63 lines (56 loc) · 1012 Bytes
/
test_helpers.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
package gohttpdisk
import (
"compress/gzip"
"io/ioutil"
"net/http"
"net/url"
"os"
"path/filepath"
)
// create cache key
func MustCacheKey(req *http.Request) *CacheKey {
ck, err := NewCacheKey(req)
if err != nil {
panic(err)
}
return ck
}
// create a test request
func MustRequest(method string, url string) *http.Request {
req, err := http.NewRequest(method, url, nil)
if err != nil {
panic(err)
}
return req
}
// parse url
func MustURL(s string) *url.URL {
u, err := url.Parse(s)
if err != nil {
panic(err)
}
return u
}
// write data to path
func MustWriteGzip(path string, data string) {
err := os.MkdirAll(filepath.Dir(path), os.ModePerm)
if err != nil {
panic(err)
}
f, err := os.Create(path)
if err != nil {
panic(err)
}
defer f.Close()
gz := gzip.NewWriter(f)
defer gz.Close()
gz.Write([]byte(data))
}
// a temp dir where we can place our cache
func TmpDir() string {
dir, err := ioutil.TempDir("", "gohttpdisk")
if err != nil {
panic(err)
}
return dir
}