-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathid_test.go
More file actions
55 lines (48 loc) · 1.45 KB
/
Copy pathid_test.go
File metadata and controls
55 lines (48 loc) · 1.45 KB
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
// Copyright © 2014 Terry Mao All rights reserved.
// This file is part of gosnowflake.
// gosnowflake is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// gosnowflake is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with gosnowflake. If not, see <http://www.gnu.org/licenses/>.
package main
import (
log "github.com/alecthomas/log4go"
"testing"
)
func TestID(t *testing.T) {
id, err := NewIdWorker(0, 0, twepoch)
if err != nil {
log.Error("NewIdWorker(0, 0) error(%v)", err)
t.FailNow()
}
sid, err := id.NextId()
if err != nil {
log.Error("id.NextId() error(%v)", err)
t.FailNow()
}
log.Info("snowflake id: %d", sid)
sids, err := id.NextIds(10)
if err != nil {
log.Error("id.NextId() error(%v)", err)
t.FailNow()
}
log.Info("snowflake ids: %v", sids)
}
func BenchmarkID(b *testing.B) {
id, err := NewIdWorker(0, 0, twepoch)
if err != nil {
log.Error("NewIdWorker(0, 0) error(%v)", err)
b.FailNow()
}
for i := 0; i < b.N; i++ {
if _, err := id.NextId(); err != nil {
b.FailNow()
}
}
}