File: messageID_test.go

package info (click to toggle)
golang-github-slack-go-slack 0.11.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 1,720 kB
  • sloc: makefile: 54
file content (46 lines) | stat: -rw-r--r-- 815 bytes parent folder | download
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
package slack

import (
	"testing"
)

func TestNewSafeID(t *testing.T) {
	idgen := NewSafeID(1)
	id1 := idgen.Next()
	id2 := idgen.Next()
	if id1 == id2 {
		t.Fatalf("id1 and id2 are same: id1: %d, id2: %d", id1, id2)
	}

	idgen = NewSafeID(100)
	id100 := idgen.Next()
	id101 := idgen.Next()
	if id2 == id100 {
		t.Fatalf("except id2 and id100 not same: id2: %d, id101: %d", id2, id100)
	}
	if id100 == id101 {
		t.Fatalf("id1 and id2 are same: id100: %d, id101: %d", id100, id101)
	}
}

var id int

func BenchmarkNewSafeID(b *testing.B) {
	b.ReportAllocs()

	idgen := NewSafeID(1)
	for i := 0; i < b.N; i++ {
		id = idgen.Next()
	}
}

func BenchmarkNewSafeIDParallel(b *testing.B) {
	b.ReportAllocs()

	b.RunParallel(func(pb *testing.PB) {
		for pb.Next() {
			idgen := NewSafeID(1)
			id = idgen.Next()
		}
	})
}