forked from summerwind/h2spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
8_2.go
63 lines (53 loc) · 1.21 KB
/
8_2.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 h2spec
import (
"bytes"
"github.com/bradfitz/http2"
"github.com/bradfitz/http2/hpack"
)
func TestServerPush(ctx *Context) {
if !ctx.IsTarget("8.2") {
return
}
PrintHeader("8.2. Server Push", 0)
func(ctx *Context) {
desc := "Sends a PUSH_PROMISE frame"
msg := "the endpoint MUST treat the receipt of a PUSH_PROMISE frame as a connection error of type PROTOCOL_ERROR."
result := false
http2Conn := CreateHttp2Conn(ctx, true)
defer http2Conn.conn.Close()
var buf bytes.Buffer
hdrs := []hpack.HeaderField{
pair(":method", "GET"),
pair(":scheme", "http"),
pair(":path", "/"),
pair(":authority", ctx.Authority()),
}
enc := hpack.NewEncoder(&buf)
for _, hf := range hdrs {
_ = enc.WriteField(hf)
}
var pp http2.PushPromiseParam
pp.StreamID = 1
pp.PromiseID = 3
pp.EndHeaders = true
pp.BlockFragment = buf.Bytes()
http2Conn.fr.WritePushPromise(pp)
loop:
for {
f, err := http2Conn.ReadFrame(ctx.Timeout)
if err != nil {
break loop
}
switch f := f.(type) {
case *http2.GoAwayFrame:
switch f.ErrCode {
case http2.ErrCodeProtocol:
result = true
break loop
}
}
}
PrintResult(result, desc, msg, 0)
}(ctx)
PrintFooter()
}