File: ring_channel_test.go

package info (click to toggle)
golang-gopkg-eapache-channels.v1 1.1.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 160 kB
  • sloc: makefile: 2
file content (49 lines) | stat: -rw-r--r-- 1,023 bytes parent folder | download | duplicates (3)
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
package channels

import "testing"

func TestRingChannel(t *testing.T) {
	var ch Channel

	ch = NewRingChannel(Infinity) // yes this is rather silly, but it should work
	testChannel(t, "infinite ring-buffer channel", ch)

	ch = NewRingChannel(None)
	go func() {
		for i := 0; i < 1000; i++ {
			ch.In() <- i
		}
		ch.Close()
	}()
	prev := -1
	for i := range ch.Out() {
		if prev >= i.(int) {
			t.Fatal("ring channel prev", prev, "but got", i.(int))
		}
	}

	ch = NewRingChannel(10)
	for i := 0; i < 1000; i++ {
		ch.In() <- i
	}
	ch.Close()
	for i := 990; i < 1000; i++ {
		val := <-ch.Out()
		if i != val.(int) {
			t.Fatal("ring channel expected", i, "but got", val.(int))
		}
	}
	if val, open := <-ch.Out(); open == true {
		t.Fatal("ring channel expected closed but got", val)
	}

	ch = NewRingChannel(None)
	ch.In() <- 0
	ch.Close()
	if val, open := <-ch.Out(); open == true {
		t.Fatal("ring channel expected closed but got", val)
	}

	ch = NewRingChannel(2)
	testChannelConcurrentAccessors(t, "ring channel", ch)
}