wangpengfei
2023-06-02 064c0874e5fd041c4641ef873d1bf72ac98a184d
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
/*
Copyright 2017 The Kubernetes Authors.
 
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
 
    http://www.apache.org/licenses/LICENSE-2.0
 
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
 
package disk
 
import (
    "bytes"
    "io/ioutil"
    "net/http"
    "net/url"
    "os"
    "path/filepath"
    "testing"
 
    "github.com/stretchr/testify/assert"
)
 
// copied from k8s.io/client-go/transport/round_trippers_test.go
type testRoundTripper struct {
    Request  *http.Request
    Response *http.Response
    Err      error
}
 
func (rt *testRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
    rt.Request = req
    return rt.Response, rt.Err
}
 
func TestCacheRoundTripper(t *testing.T) {
    rt := &testRoundTripper{}
    cacheDir, err := ioutil.TempDir("", "cache-rt")
    defer os.RemoveAll(cacheDir)
    if err != nil {
        t.Fatal(err)
    }
    cache := newCacheRoundTripper(cacheDir, rt)
 
    // First call, caches the response
    req := &http.Request{
        Method: http.MethodGet,
        URL:    &url.URL{Host: "localhost"},
    }
    rt.Response = &http.Response{
        Header:     http.Header{"ETag": []string{`"123456"`}},
        Body:       ioutil.NopCloser(bytes.NewReader([]byte("Content"))),
        StatusCode: http.StatusOK,
    }
    resp, err := cache.RoundTrip(req)
    if err != nil {
        t.Fatal(err)
    }
    content, err := ioutil.ReadAll(resp.Body)
    if err != nil {
        t.Fatal(err)
    }
    if string(content) != "Content" {
        t.Errorf(`Expected Body to be "Content", got %q`, string(content))
    }
 
    // Second call, returns cached response
    req = &http.Request{
        Method: http.MethodGet,
        URL:    &url.URL{Host: "localhost"},
    }
    rt.Response = &http.Response{
        StatusCode: http.StatusNotModified,
        Body:       ioutil.NopCloser(bytes.NewReader([]byte("Other Content"))),
    }
 
    resp, err = cache.RoundTrip(req)
    if err != nil {
        t.Fatal(err)
    }
 
    // Read body and make sure we have the initial content
    content, err = ioutil.ReadAll(resp.Body)
    resp.Body.Close()
    if err != nil {
        t.Fatal(err)
    }
    if string(content) != "Content" {
        t.Errorf("Invalid content read from cache %q", string(content))
    }
}
 
func TestCacheRoundTripperPathPerm(t *testing.T) {
    assert := assert.New(t)
 
    rt := &testRoundTripper{}
    cacheDir, err := ioutil.TempDir("", "cache-rt")
    os.RemoveAll(cacheDir)
    defer os.RemoveAll(cacheDir)
 
    if err != nil {
        t.Fatal(err)
    }
    cache := newCacheRoundTripper(cacheDir, rt)
 
    // First call, caches the response
    req := &http.Request{
        Method: http.MethodGet,
        URL:    &url.URL{Host: "localhost"},
    }
    rt.Response = &http.Response{
        Header:     http.Header{"ETag": []string{`"123456"`}},
        Body:       ioutil.NopCloser(bytes.NewReader([]byte("Content"))),
        StatusCode: http.StatusOK,
    }
    resp, err := cache.RoundTrip(req)
    if err != nil {
        t.Fatal(err)
    }
    content, err := ioutil.ReadAll(resp.Body)
    if err != nil {
        t.Fatal(err)
    }
    if string(content) != "Content" {
        t.Errorf(`Expected Body to be "Content", got %q`, string(content))
    }
 
    err = filepath.Walk(cacheDir, func(path string, info os.FileInfo, err error) error {
        if err != nil {
            return err
        }
        if info.IsDir() {
            assert.Equal(os.FileMode(0750), info.Mode().Perm())
        } else {
            assert.Equal(os.FileMode(0660), info.Mode().Perm())
        }
        return nil
    })
    assert.NoError(err)
}