-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhaikunator_test.go
126 lines (90 loc) · 2.7 KB
/
haikunator_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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package haikunator
import (
"math/rand"
"strconv"
"strings"
"testing"
"time"
)
func TestDefaultReturnsTwoWordsAndInt(t *testing.T) {
h := NewHaikunator()
haiku := h.Haikunate()
parts := strings.Split(haiku, "-")
if len(parts) < 3 {
t.Errorf("Generated haiku [%s] is less than 3 parts: %v\n", haiku, parts)
}
_, err := strconv.ParseInt(parts[2], 10, 64)
if err != nil {
t.Error("Third part is not integer: ", parts[2])
}
}
func TestNonDefaultReturnsTwoWordsAndInt(t *testing.T) {
r := rand.New(rand.NewSource(time.Now().UnixNano()))
h := Haikunator{r: r, delim: ".", token: 1000}
haiku := h.Haikunate()
parts := strings.Split(haiku, ".")
if len(parts) < 3 {
t.Errorf("Generated haiku [%s] is less than 3 parts: %v\n", haiku, parts)
}
token, err := strconv.ParseInt(parts[2], 10, 64)
if err != nil {
t.Error("Third part is not integer: ", parts[2])
}
if token < 0 || token > 1000 {
t.Error("Generated token is outside of bounds 0-1000", token)
}
}
func TestTokenHaikunateBetweenZeroAndMax(t *testing.T) {
h := NewHaikunator()
haiku := h.TokenHaikunate(1000)
parts := strings.Split(haiku, "-")
if len(parts) < 3 {
t.Errorf("Generated haiku [%s] is less than 3 parts: %v\n", haiku, parts)
}
token, err := strconv.ParseInt(parts[2], 10, 64)
if err != nil {
t.Error("Third part is not integer: ", parts[2])
}
if token < 0 || token > 1000 {
t.Error("Generated token is outside of bounds 0-1000", token)
}
}
func TestZeroTokenGeneratesNoTokenHaiku(t *testing.T) {
h := NewHaikunator()
haiku := h.TokenHaikunate(0)
parts := strings.Split(haiku, "-")
if len(parts) != 2 {
t.Errorf("Generated haiku has invalid number of parts, expected 2: %v\n", parts)
}
}
func TestSpaceDelimHaikuHasCorrectDelimAndNoToken(t *testing.T) {
h := NewHaikunator()
haiku := h.DelimHaikunate(" ")
parts := strings.Split(haiku, " ")
if len(parts) != 2 {
t.Errorf("Generated haiku has invalid number of parts, expected 2: %v\n", parts)
}
}
func TestTokenDelimHaikuHasDelimAndToken(t *testing.T) {
h := NewHaikunator()
haiku := h.TokenDelimHaikunate(1000, ".")
parts := strings.Split(haiku, ".")
if len(parts) != 3 {
t.Errorf("Generated haiku has invalid number of parts, expected 3: %v\n", parts)
}
token, err := strconv.ParseInt(parts[2], 10, 64)
if err != nil {
t.Error("Third part is not integer: ", parts[2])
}
if token < 0 || token > 1000 {
t.Error("Generated token is outside of bounds 0-1000", token)
}
}
func TestZeroTokenDelimHaikuHasDelimAndNoToken(t *testing.T) {
h := NewHaikunator()
haiku := h.TokenDelimHaikunate(0, " ")
parts := strings.Split(haiku, " ")
if len(parts) != 2 {
t.Errorf("Generated haiku has invalid number of parts, expected 2: %v\n", parts)
}
}