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
|
package tests
import (
"bytes"
"errors"
"net/http"
"testing"
"github.com/spiral/roadrunner/v2/internal"
http2 "github.com/spiral/roadrunner/v2/plugins/http"
"github.com/stretchr/testify/assert"
)
type testWriter struct {
h http.Header
buf bytes.Buffer
wroteHeader bool
code int
err error
pushErr error
pushes []string
}
func (tw *testWriter) Header() http.Header { return tw.h }
func (tw *testWriter) Write(p []byte) (int, error) {
if !tw.wroteHeader {
tw.WriteHeader(http.StatusOK)
}
n, e := tw.buf.Write(p)
if e == nil {
e = tw.err
}
return n, e
}
func (tw *testWriter) WriteHeader(code int) { tw.wroteHeader = true; tw.code = code }
func (tw *testWriter) Push(target string, opts *http.PushOptions) error {
tw.pushes = append(tw.pushes, target)
return tw.pushErr
}
func TestNewResponse_Error(t *testing.T) {
r, err := http2.NewResponse(internal.Payload{Context: []byte(`invalid payload`)})
assert.Error(t, err)
assert.Nil(t, r)
}
func TestNewResponse_Write(t *testing.T) {
r, err := http2.NewResponse(internal.Payload{
Context: []byte(`{"headers":{"key":["value"]},"status": 301}`),
Body: []byte(`sample body`),
})
assert.NoError(t, err)
assert.NotNil(t, r)
w := &testWriter{h: http.Header(make(map[string][]string))}
assert.NoError(t, r.Write(w))
assert.Equal(t, 301, w.code)
assert.Equal(t, "value", w.h.Get("key"))
assert.Equal(t, "sample body", w.buf.String())
}
func TestNewResponse_Stream(t *testing.T) {
r, err := http2.NewResponse(internal.Payload{
Context: []byte(`{"headers":{"key":["value"]},"status": 301}`),
})
// r is pointer, so, it might be nil
if r == nil {
t.Fatal("response is nil")
}
r.Body = &bytes.Buffer{}
r.Body.(*bytes.Buffer).WriteString("hello world")
assert.NoError(t, err)
assert.NotNil(t, r)
w := &testWriter{h: http.Header(make(map[string][]string))}
assert.NoError(t, r.Write(w))
assert.Equal(t, 301, w.code)
assert.Equal(t, "value", w.h.Get("key"))
assert.Equal(t, "hello world", w.buf.String())
}
func TestNewResponse_StreamError(t *testing.T) {
r, err := http2.NewResponse(internal.Payload{
Context: []byte(`{"headers":{"key":["value"]},"status": 301}`),
})
// r is pointer, so, it might be nil
if r == nil {
t.Fatal("response is nil")
}
r.Body = &bytes.Buffer{}
r.Body.(*bytes.Buffer).WriteString("hello world")
assert.NoError(t, err)
assert.NotNil(t, r)
w := &testWriter{h: http.Header(make(map[string][]string)), err: errors.New("error")}
assert.Error(t, r.Write(w))
}
func TestWrite_HandlesPush(t *testing.T) {
r, err := http2.NewResponse(internal.Payload{
Context: []byte(`{"headers":{"Http2-Push":["/test.js"],"content-type":["text/html"]},"status": 200}`),
})
assert.NoError(t, err)
assert.NotNil(t, r)
w := &testWriter{h: http.Header(make(map[string][]string))}
assert.NoError(t, r.Write(w))
assert.Nil(t, w.h["Http2-Push"])
assert.Equal(t, []string{"/test.js"}, w.pushes)
}
func TestWrite_HandlesTrailers(t *testing.T) {
r, err := http2.NewResponse(internal.Payload{
Context: []byte(`{"headers":{"Trailer":["foo, bar", "baz"],"foo":["test"],"bar":["demo"]},"status": 200}`),
})
assert.NoError(t, err)
assert.NotNil(t, r)
w := &testWriter{h: http.Header(make(map[string][]string))}
assert.NoError(t, r.Write(w))
assert.Nil(t, w.h[http2.TrailerHeaderKey])
assert.Nil(t, w.h["foo"]) //nolint:golint,staticcheck
assert.Nil(t, w.h["baz"]) //nolint:golint,staticcheck
assert.Equal(t, "test", w.h.Get("Trailer:foo"))
assert.Equal(t, "demo", w.h.Get("Trailer:bar"))
}
func TestWrite_HandlesHandlesWhitespacesInTrailer(t *testing.T) {
r, err := http2.NewResponse(internal.Payload{
Context: []byte(
`{"headers":{"Trailer":["foo\t,bar , baz"],"foo":["a"],"bar":["b"],"baz":["c"]},"status": 200}`),
})
assert.NoError(t, err)
assert.NotNil(t, r)
w := &testWriter{h: http.Header(make(map[string][]string))}
assert.NoError(t, r.Write(w))
assert.Equal(t, "a", w.h.Get("Trailer:foo"))
assert.Equal(t, "b", w.h.Get("Trailer:bar"))
assert.Equal(t, "c", w.h.Get("Trailer:baz"))
}
|