-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathidhider_test.go
95 lines (79 loc) · 1.9 KB
/
idhider_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
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
package idhider
import (
"reflect"
"testing"
)
const testKey = "l3XD0qwLL5nDZQw4"
func TestEncryptID(t *testing.T) {
key := []byte(testKey)
var id uint64 = 133742
hider, _ := NewIDHider(key)
var want uint64 = 5781761883846612620
got := hider.PublicID(id)
if want != got {
t.Errorf("\nGot %d\nWant %d", got, want)
}
}
func TestEncryptIDHuman(t *testing.T) {
key := []byte(testKey)
var id uint64 = 133742
hider, _ := NewIDHider(key)
want := "hgb95qpcy4y50"
got := hider.HumanPublicID(id)
if want != got {
t.Errorf("\nGot %s\nWant %s", got, want)
}
}
func TestDecryptHumanID(t *testing.T) {
key := []byte(testKey)
humanPublicID := "hgb95qpcy4y50"
hider, _ := NewIDHider(key)
var want uint64 = 133742
got := hider.HumanToID(humanPublicID)
if want != got {
t.Errorf("\nGot %d\nWant %d", got, want)
}
}
func TestCrockfordBase32Encode(t *testing.T) {
var n uint64 = 5781761883846612620
got := crockfordBase32Encode(uint64ToBytes(n))
want := "hgb95qpcy4y50"
if want != got {
t.Errorf("\nGot %s\nWant %s", got, want)
}
}
func TestCrockfordBase32Decode(t *testing.T) {
got := crockfordBase32Decode("hgb95qpcy4y50")
want := uint64ToBytes(5781761883846612620)
if !reflect.DeepEqual(got, want) {
t.Errorf("\nGot %v\nWant %v", got, want)
}
}
func TestIDEncDec(t *testing.T) {
key := []byte(testKey)
hider, _ := NewIDHider(key)
for id := 0; id < 10000; id++ {
id := uint64(id)
humanPublicID := hider.HumanPublicID(id)
reID := hider.HumanToID(humanPublicID)
if id != reID {
t.Errorf("\nGot %d\nWant %d", reID, id)
}
}
}
func BenchmarkMakeHumanPublicID(b *testing.B) {
key := []byte(testKey)
hider, _ := NewIDHider(key)
var id uint64 = 133742
for n := 0; n < b.N; n++ {
hider.HumanPublicID(id)
}
}
func BenchmarkReadHumanPublicID(b *testing.B) {
key := []byte(testKey)
hider, _ := NewIDHider(key)
var hid = "hgb95qpcy4y50"
for n := 0; n < b.N; n++ {
hider.HumanToID(hid)
}
}