forked from summerwind/h2spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
6_7.go
103 lines (84 loc) · 2.12 KB
/
6_7.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
package h2spec
import (
"fmt"
"github.com/bradfitz/http2"
)
func TestPing(ctx *Context) {
if !ctx.IsTarget("6.7") {
return
}
PrintHeader("6.7. PING", 0)
func(ctx *Context) {
desc := "Sends a PING frame"
msg := "the endpoint MUST sends a PING frame with ACK."
result := false
http2Conn := CreateHttp2Conn(ctx, true)
defer http2Conn.conn.Close()
data := [8]byte{'h', '2', 's', 'p', 'e', 'c'}
http2Conn.fr.WritePing(false, data)
loop:
for {
f, err := http2Conn.ReadFrame(ctx.Timeout)
if err != nil {
break loop
}
switch f := f.(type) {
case *http2.PingFrame:
if f.FrameHeader.Flags.Has(http2.FlagPingAck) {
result = true
break loop
}
}
}
PrintResult(result, desc, msg, 0)
}(ctx)
func(ctx *Context) {
desc := "Sends a PING frame with the stream identifier that is not 0x0"
msg := "the endpoint MUST respond with a connection error of type PROTOCOL_ERROR."
result := false
http2Conn := CreateHttp2Conn(ctx, true)
defer http2Conn.conn.Close()
fmt.Fprintf(http2Conn.conn, "\x00\x00\x08\x06\x00\x00\x00\x00\x03")
fmt.Fprintf(http2Conn.conn, "\x00\x00\x00\x00\x00\x00\x00\x00")
loop:
for {
f, err := http2Conn.ReadFrame(ctx.Timeout)
if err != nil {
break loop
}
switch f := f.(type) {
case *http2.GoAwayFrame:
if f.ErrCode == http2.ErrCodeProtocol {
result = true
break loop
}
}
}
PrintResult(result, desc, msg, 0)
}(ctx)
func(ctx *Context) {
desc := "Sends a PING frame with a length field value other than 8"
msg := "the endpoint MUST respond with a connection error of type FRAME_SIZE_ERROR."
result := false
http2Conn := CreateHttp2Conn(ctx, true)
defer http2Conn.conn.Close()
fmt.Fprintf(http2Conn.conn, "\x00\x00\x06\x06\x00\x00\x00\x00\x00")
fmt.Fprintf(http2Conn.conn, "\x00\x00\x00\x00\x00\x00")
loop:
for {
f, err := http2Conn.ReadFrame(ctx.Timeout)
if err != nil {
break loop
}
switch f := f.(type) {
case *http2.GoAwayFrame:
if f.ErrCode == http2.ErrCodeFrameSize {
result = true
break loop
}
}
}
PrintResult(result, desc, msg, 0)
}(ctx)
PrintFooter()
}