-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstring_test.go
More file actions
116 lines (100 loc) · 2.05 KB
/
string_test.go
File metadata and controls
116 lines (100 loc) · 2.05 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
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
111
112
113
114
115
116
package gofaker
import (
"fmt"
"testing"
)
func ExampleLetter() {
Seed(11)
fmt.Println(Letter())
// Output: g
}
func BenchmarkLetter(b *testing.B) {
Seed(11)
for i := 0; i < b.N; i++ {
Letter()
}
}
func ExampleDigit() {
Seed(11)
fmt.Println(Digit())
// Output: 0
}
func BenchmarkDigit(b *testing.B) {
Seed(11)
for i := 0; i < b.N; i++ {
Digit()
}
}
func ExampleNumerify() {
Seed(11)
fmt.Println(Numerify("###-###-####"))
// Output: 613-645-9948
}
func BenchmarkNumerify(b *testing.B) {
for i := 0; i < b.N; i++ {
Numerify("###-###-####")
}
}
func ExampleLexify() {
Seed(11)
fmt.Println(Lexify("?????"))
// Output: gbRMa
}
func BenchmarkLexify(b *testing.B) {
for i := 0; i < b.N; i++ {
Lexify("??????")
}
}
func ExampleShuffleStrings() {
Seed(11)
strings := []string{"happy", "times", "for", "everyone", "have", "a", "good", "day"}
ShuffleStrings(strings)
fmt.Println(strings)
// Output: [good everyone have for times a day happy]
}
func TestShuffleStrings(t *testing.T) {
ShuffleStrings([]string{"a"})
ShuffleStrings(nil)
a := []string{"a", "b", "c", "d", "e", "f", "g", "h"}
b := make([]string, len(a))
copy(b, a)
ShuffleStrings(a)
if equalSliceString(a, b) {
t.Errorf("shuffle resulted in the same permutation, the odds are slim")
}
}
func BenchmarkShuffleStrings(b *testing.B) {
Seed(11)
for i := 0; i < b.N; i++ {
ShuffleStrings([]string{"happy", "times", "for", "everyone", "have", "a", "good", "day"})
}
}
func ExampleRandomString() {
Seed(11)
fmt.Println(RandomString([]string{"hello", "world"}))
// Output: hello
}
func TestRandomString(t *testing.T) {
for _, test := range []struct {
in []string
should string
}{
{[]string{}, ""},
{nil, ""},
{[]string{"a"}, "a"},
{[]string{"a", "b", "c", "d", "e", "f"}, "f"},
} {
Seed(44)
got := RandomString(test.in)
if got == test.should {
continue
}
t.Errorf("for '%v' should '%s' got '%s'",
test.in, test.should, got)
}
}
func BenchmarkRandomString(b *testing.B) {
for i := 0; i < b.N; i++ {
RandomString([]string{"hello", "world"})
}
}