-
Notifications
You must be signed in to change notification settings - Fork 35
/
sync_test.go
156 lines (130 loc) · 3.05 KB
/
sync_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
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
package beehive
import (
"fmt"
"io/ioutil"
"log"
"testing"
"github.com/kandoo/beehive/Godeps/_workspace/src/golang.org/x/net/context"
)
type query string
func TestSync(t *testing.T) {
h := newHiveForTest()
app := h.NewApp("sync")
rcvf := func(msg Msg, ctx RcvContext) error {
ctx.Reply(msg, msg.Data().(query))
return nil
}
mapf := func(msg Msg, ctx MapContext) MappedCells {
return ctx.LocalMappedCells()
}
app.HandleFunc(query(""), mapf, rcvf)
go h.Start()
defer h.Stop()
req := query("test")
res, err := h.Sync(context.Background(), req)
if err != nil {
t.Fatalf("error in process: %v", err)
}
if res != req {
t.Errorf("sync.Process(%v) = %v; want=%v", req, res, req)
}
}
func TestSyncCancel(t *testing.T) {
h := newHiveForTest()
req := query("test")
ctx, ccl := context.WithCancel(context.Background())
go ccl()
_, err := h.Sync(ctx, req)
if err == nil {
t.Errorf("no error in process: %v", err)
}
}
func TestSyncDeferReply(t *testing.T) {
h := newHiveForTest()
app := h.NewApp("syncDeferReply")
type reply string
type deferred struct {
Repliable
Q query
}
deferredCh := make(chan struct{})
deferf := func(msg Msg, ctx RcvContext) error {
deferredCh <- struct{}{}
r := ctx.DeferReply(msg)
return ctx.Dict("sync").Put("reply", deferred{
Repliable: r,
Q: msg.Data().(query),
})
}
replyf := func(msg Msg, ctx RcvContext) error {
v, err := ctx.Dict("sync").Get("reply")
if err != nil {
t.Fatalf("cannot decode reply: %v", err)
}
d := v.(deferred)
d.Reply(ctx, d.Q)
return nil
}
mapf := func(msg Msg, ctx MapContext) MappedCells {
return ctx.LocalMappedCells()
}
app.HandleFunc(query(""), mapf, deferf)
app.HandleFunc(reply(""), mapf, replyf)
go h.Start()
defer h.Stop()
go func() {
<-deferredCh
h.Emit(reply(""))
}()
req := query("test")
res, err := h.Sync(context.Background(), req)
if err != nil {
t.Fatalf("error in process: %v", err)
}
if res != req {
t.Errorf("sync.Process(%v) = %v; want=%v", req, res, req)
}
}
type benchSyncHandler struct{}
func (h benchSyncHandler) Rcv(msg Msg, ctx RcvContext) error {
ctx.Reply(msg, msg.Data().(int))
return nil
}
func (h benchSyncHandler) Map(msg Msg, ctx MapContext) MappedCells {
return ctx.LocalMappedCells()
}
func BenchmarkSync(b *testing.B) {
log.SetOutput(ioutil.Discard)
b.StopTimer()
h := newHiveForTest()
app := h.NewApp("sync")
app.Handle(0, benchSyncHandler{})
go h.Start()
defer h.Stop()
waitTilStareted(h)
b.StartTimer()
for i := 0; i < b.N; i++ {
h.Sync(context.Background(), i)
}
b.StopTimer()
}
func ExampleSyncInstall() {
rcvf := func(msg Msg, ctx RcvContext) error {
ctx.Reply(msg, "hello "+msg.Data().(query))
return nil
}
mapf := func(msg Msg, ctx MapContext) MappedCells {
return ctx.LocalMappedCells()
}
hive := NewHive()
app := hive.NewApp("sync-app")
app.HandleFunc(query(""), mapf, rcvf)
go hive.Start()
defer hive.Stop()
result, err := hive.Sync(context.Background(), query("your name"))
if err != nil {
fmt.Printf("error in sync: %v", err)
return
}
fmt.Println(result)
}