forked from linkedin/goavro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrace_test.go
115 lines (91 loc) · 1.84 KB
/
race_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
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
package goavro
import (
"bytes"
"fmt"
"testing"
)
func TestRaceCodecConstructionDecode(t *testing.T) {
recordSchemaJSON := `{"type": "long"}`
codec, _ := NewCodec(recordSchemaJSON)
comms := make(chan []byte, 1000)
done := make(chan error, 10)
go func() {
for i := 0; i < 10000; i++ {
//Completely unrelated stateful objects were causing races
if i%100 == 0 {
recordSchemaJSON := `{"type": "long"}`
NewCodec(recordSchemaJSON)
}
bb := new(bytes.Buffer)
if err := codec.Encode(bb, int64(i)); err != nil {
done <- err
return
}
comms <- bb.Bytes()
}
close(comms)
}()
go func() {
i := 0
for encoded := range comms {
bb := bytes.NewBuffer(encoded)
decoded, err := codec.Decode(bb)
if err != nil {
done <- err
return
}
result := decoded.(int64)
if result != int64(i) {
done <- fmt.Errorf("didnt match %v %v", i, result)
return
}
i++
}
close(done)
}()
err := <-done
if err != nil {
t.Fatal(err)
}
}
func TestRaceCodecConstruction(t *testing.T) {
comms := make(chan []byte, 1000)
done := make(chan error, 10)
go func() {
recordSchemaJSON := `{"type": "long"}`
codec, _ := NewCodec(recordSchemaJSON)
for i := 0; i < 10000; i++ {
bb := new(bytes.Buffer)
if err := codec.Encode(bb, int64(i)); err != nil {
done <- err
return
}
comms <- bb.Bytes()
}
close(comms)
}()
go func() {
recordSchemaJSON := `{"type": "long"}`
codec, _ := NewCodec(recordSchemaJSON)
i := 0
for encoded := range comms {
bb := bytes.NewBuffer(encoded)
decoded, err := codec.Decode(bb)
if err != nil {
done <- err
return
}
result := decoded.(int64)
if result != int64(i) {
done <- fmt.Errorf("didnt match %v %v", i, result)
return
}
i++
}
close(done)
}()
err := <-done
if err != nil {
t.Fatal(err)
}
}