-
Notifications
You must be signed in to change notification settings - Fork 6
/
client_test.go
55 lines (42 loc) · 1012 Bytes
/
client_test.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
package http2
// func TestClientWriteOrder(t *testing.T) {
// bf := bytes.NewBuffer(nil)
// c := &Conn{
// c: &net.TCPConn{},
// }
// c.out = make(chan *FrameHeader, 1)
// c.bw = bufio.NewWriter(bf)
// go c.writeLoop()
// framesToTest := 32
// id := uint32(1)
// frames := make([]*FrameHeader, 0, framesToTest)
// for i := 0; i < framesToTest; i++ {
// fr := AcquireFrameHeader()
// fr.SetStream(id)
// fr.SetBody(&Data{})
// id += 2
// frames = append(frames, fr)
// }
// for len(frames) > 0 {
// i := rand.Intn(len(frames))
// c.out <- frames[i]
// frames = append(frames[:i], frames[i+1:]...)
// }
// br := bufio.NewReader(bf)
// fr := AcquireFrameHeader()
// expected := uint32(1)
// for i := 0; i < framesToTest; i++ {
// _, err := fr.ReadFrom(br)
// if err != nil {
// if err == io.EOF {
// break
// }
// t.Fatalf("error reading frame: %s", err)
// }
// if fr.Stream() != expected {
// t.Fatalf("Unexpected id: %d <> %d", fr.Stream(), expected)
// }
// expected += 2
// }
// close(c.out)
// }