forked from harness/harness
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hub_test.go
52 lines (42 loc) · 854 Bytes
/
hub_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
// Copyright 2019 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by the Drone Non-Commercial License
// that can be found in the LICENSE file.
// +build !oss
package pubsub
import (
"context"
"sync"
"testing"
"github.com/drone/drone/core"
)
func TestBus(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
p := New()
events, errc := p.Subscribe(ctx)
if got, want := p.Subscribers(), 1; got != want {
t.Errorf("Want %d subscribers, got %d", want, got)
}
w := sync.WaitGroup{}
w.Add(1)
go func() {
p.Publish(ctx, new(core.Message))
p.Publish(ctx, new(core.Message))
p.Publish(ctx, new(core.Message))
w.Done()
}()
w.Wait()
w.Add(3)
go func() {
for {
select {
case <-errc:
return
case <-events:
w.Done()
}
}
}()
w.Wait()
cancel()
}