aboutsummaryrefslogtreecommitdiff
path: root/client/channels_test.go
blob: 4465fed45281d95cce05ff5f55acfc36d20363f7 (plain)
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
package client

import (
	"sync"
	"sync/atomic"
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestNotifyChannel(t *testing.T) {

	chans := newChannels[int, int](10)

	chanKey := 1
	rx := chans.add(chanKey)

	chanKey2 := 2
	rx2 := chans.add(chanKey2)

	var wg sync.WaitGroup

	wg.Add(1)
	go func() {
		for i := 0; i < 50; i++ {
			err := chans.notify(chanKey, i)
			assert.Nil(t, err)
		}

		// drop the channel
		tx := chans.remove(chanKey)
		close(tx)
		wg.Done()
	}()

	wg.Add(1)
	go func() {
		for i := 0; i < 50; i++ {
			err := chans.notify(chanKey2, i)
			assert.Nil(t, err)
		}

		// drop the channel
		tx := chans.remove(chanKey2)
		close(tx)
		wg.Done()
	}()

	var receivedItem atomic.Int32

	wg.Add(1)
	go func() {
		for range rx {
			receivedItem.Add(1)
		}
		wg.Done()
	}()

	wg.Add(1)
	go func() {
		for range rx2 {
			receivedItem.Add(1)
		}
		wg.Done()
	}()

	wg.Wait()
	assert.Equal(t, receivedItem.Load(), int32(100))
}

func TestRemoveChannel(t *testing.T) {

	chans := newChannels[int, int](1)

	chanKey := 1
	rx := chans.add(chanKey)

	tx := chans.remove(chanKey)
	assert.Equal(t, chans.length(), 0, "channels should be empty")

	tx <- 3
	val := <-rx
	assert.Equal(t, val, 3)

	tx = chans.remove(chanKey)
	assert.Nil(t, tx)

	err := chans.notify(chanKey, 1)
	assert.NotNil(t, err)
}

func TestClearChannels(t *testing.T) {

	chans := newChannels[int, int](1)

	chanKey := 1
	rx := chans.add(chanKey)

	chans.clear()
	assert.Equal(t, chans.length(), 0, "channels should be empty")

	_, ok := <-rx
	assert.False(t, ok, "chan closed")

	tx := chans.remove(chanKey)
	assert.Nil(t, tx)

	err := chans.notify(chanKey, 1)
	assert.NotNil(t, err)
}