forked from summerwind/h2spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5_1.go
159 lines (135 loc) · 3.54 KB
/
5_1.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
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
package h2spec
import (
"github.com/bradfitz/http2"
"github.com/bradfitz/http2/hpack"
)
func TestStreamStates(ctx *Context) {
if !ctx.IsTarget("5.1") {
return
}
PrintHeader("5.1. Stream States", 0)
TestStreamIdentifiers(ctx)
TestStreamConcurrency(ctx)
PrintFooter()
}
func TestStreamIdentifiers(ctx *Context) {
PrintHeader("5.1.1. Stream Identifiers", 1)
msg := "The endpoint MUST respond with a connection error of type PROTOCOL_ERROR."
func(ctx *Context) {
desc := "Sends even-numbered stream identifier"
result := false
http2Conn := CreateHttp2Conn(ctx, true)
defer http2Conn.conn.Close()
hdrs := []hpack.HeaderField{
pair(":method", "GET"),
pair(":scheme", "http"),
pair(":path", "/"),
pair(":authority", ctx.Authority()),
}
var hp http2.HeadersFrameParam
hp.StreamID = 2
hp.EndStream = true
hp.EndHeaders = true
hp.BlockFragment = http2Conn.EncodeHeader(hdrs)
http2Conn.fr.WriteHeaders(hp)
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
}
}
}
PrintResult(result, desc, msg, 1)
}(ctx)
func(ctx *Context) {
desc := "Sends stream identifier that is numerically smaller than previous"
result := false
http2Conn := CreateHttp2Conn(ctx, true)
defer http2Conn.conn.Close()
hdrs := []hpack.HeaderField{
pair(":method", "GET"),
pair(":scheme", "http"),
pair(":path", "/"),
pair(":authority", ctx.Authority()),
}
var hp1 http2.HeadersFrameParam
hp1.StreamID = 5
hp1.EndStream = true
hp1.EndHeaders = true
hp1.BlockFragment = http2Conn.EncodeHeader(hdrs)
http2Conn.fr.WriteHeaders(hp1)
var hp2 http2.HeadersFrameParam
hp2.StreamID = 3
hp2.EndStream = true
hp2.EndHeaders = true
hp2.BlockFragment = http2Conn.EncodeHeader(hdrs)
http2Conn.fr.WriteHeaders(hp2)
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
}
}
}
PrintResult(result, desc, msg, 1)
}(ctx)
}
func TestStreamConcurrency(ctx *Context) {
PrintHeader("5.1.2. Stream Concurrency", 1)
func(ctx *Context) {
desc := "Sends HEADERS frames that causes their advertised concurrent stream limit to be exceeded"
msg := "The endpoint MUST treat this as a stream error (Section 5.4.2) of type PROTOCOL_ERROR or REFUSED_STREAM"
result := false
http2Conn := CreateHttp2Conn(ctx, true)
defer http2Conn.conn.Close()
hdrs := []hpack.HeaderField{
pair(":method", "GET"),
pair(":scheme", "http"),
pair(":path", "/"),
pair(":authority", ctx.Authority()),
}
hbf := http2Conn.EncodeHeader(hdrs)
var streamID uint32 = 1
for i := 0; i <= int(ctx.Settings[http2.SettingMaxConcurrentStreams]); i++ {
var hp http2.HeadersFrameParam
hp.StreamID = streamID
hp.EndStream = true
hp.EndHeaders = true
hp.BlockFragment = hbf
http2Conn.fr.WriteHeaders(hp)
streamID += 2
}
loop:
for {
f, err := http2Conn.ReadFrame(ctx.Timeout)
if err != nil {
break loop
}
switch f := f.(type) {
case *http2.RSTStreamFrame:
if f.ErrCode == http2.ErrCodeProtocol || f.ErrCode == http2.ErrCodeRefusedStream {
result = true
break loop
}
case *http2.GoAwayFrame:
if f.ErrCode == http2.ErrCodeProtocol || f.ErrCode == http2.ErrCodeRefusedStream {
result = true
break loop
}
}
}
PrintResult(result, desc, msg, 1)
}(ctx)
}