This repository has been archived by the owner on Aug 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmutation_test.go
231 lines (217 loc) · 5.35 KB
/
mutation_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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
package gago
import (
"testing"
)
func sliceContainsInt(x int, ints []int) bool {
for _, v := range ints {
if v == x {
return true
}
}
return false
}
func sliceContainsFloat64(x float64, floats []float64) bool {
for _, v := range floats {
if v == x {
return true
}
}
return false
}
func sliceContainsString(x string, strings []string) bool {
for _, v := range strings {
if v == x {
return true
}
}
return false
}
func TestMutNormalFloat64All(t *testing.T) {
var (
rng = newRand()
genome = []float64{1, 2, 3}
mutated = make([]float64, len(genome))
)
copy(mutated, genome)
MutNormalFloat64(mutated, 1, rng)
for i, v := range mutated {
if v == genome[i] {
t.Error("Gene should have been modified but hasn't")
}
}
}
func TestMutNormalFloat64None(t *testing.T) {
var (
rng = newRand()
genome = []float64{1, 2, 3}
mutated = make([]float64, len(genome))
)
copy(mutated, genome)
MutNormalFloat64(mutated, 0, rng)
for i, v := range mutated {
if v != genome[i] {
t.Error("Gene has been modified but shouldn't have")
}
}
}
func TestMutUniformString(t *testing.T) {
var (
rng = newRand()
genome = []string{"a", "b", "c"}
corpus = []string{"d", "e", "f"}
mutated = make([]string, len(genome))
)
copy(mutated, genome)
MutUniformString(mutated, corpus, 3, rng)
// Check the length of the mutated genome is consistent
if len(mutated) != len(genome) {
t.Error("Mutated genome has the wrong length")
}
// Check the new genes are present in the previous genome or in the corpus
for _, v := range mutated {
var inGenome = false
for _, gene := range genome {
if gene == v {
inGenome = true
}
}
var inCorpus = false
for _, element := range corpus {
if element == v {
inCorpus = true
}
}
if !inGenome && !inCorpus {
t.Error("New genome is not present in previous genome or in corpus")
}
}
}
func TestMutPermuteSingleGene(t *testing.T) {
var (
rng = newRand()
genome = []int{42}
)
MutPermuteInt(genome, 1, rng)
// Check the length of the mutated genome
if len(genome) != 1 {
t.Error("Mutated genome has the wrong length")
}
// Check the value of the mutated genome
for genome[0] != 42 {
t.Error("Mutated genome has the wrong value")
}
}
func TestMutPermuteInt(t *testing.T) {
var (
rng = newRand()
genome = []int{1, 2, 3}
mutated = make([]int, len(genome))
)
copy(mutated, genome)
MutPermuteInt(mutated, 3, rng)
// Check the length of the mutated genome is consistent
if len(mutated) != len(genome) {
t.Error("Mutated genome has the wrong length")
}
// Check the genes in the initial genome are still present
for _, v := range genome {
if !sliceContainsInt(v, mutated) {
t.Error("Gene in initial genome has disappeared")
}
}
}
func TestMutPermuteFloat64(t *testing.T) {
var (
rng = newRand()
genome = []float64{1, 2, 3}
mutated = make([]float64, len(genome))
)
copy(mutated, genome)
MutPermuteFloat64(mutated, 3, rng)
// Check the length of the mutated genome is consistent
if len(mutated) != len(genome) {
t.Error("Mutated genome has the wrong length")
}
// Check the genes in the initial genome are still present
for _, v := range genome {
if !sliceContainsFloat64(v, mutated) {
t.Error("Gene in initial genome has disappeared")
}
}
}
func TestMutPermuteString(t *testing.T) {
var (
rng = newRand()
genome = []string{"a", "b", "c"}
mutated = make([]string, len(genome))
)
copy(mutated, genome)
MutPermuteString(mutated, 3, rng)
// Check the length of the mutated genome is consistent
if len(mutated) != len(genome) {
t.Error("Mutated genome has the wrong length")
}
// Check the genes in the initial genome are still present
for _, v := range genome {
if !sliceContainsString(v, mutated) {
t.Error("Gene in initial genome has disappeared")
}
}
}
func TestMutSpliceInt(t *testing.T) {
var (
rng = newRand()
genome = []int{1, 2, 3}
mutated = make([]int, len(genome))
)
copy(mutated, genome)
MutSpliceInt(mutated, rng)
// Check the length of the mutated genome is consistent
if len(mutated) != len(genome) {
t.Error("Mutated genome has the wrong length")
}
// Check the genes in the initial genome are still present
for _, v := range genome {
if !sliceContainsInt(v, mutated) {
t.Error("Gene in initial genome has disappeared")
}
}
}
func TestMutSpliceFloat64(t *testing.T) {
var (
rng = newRand()
genome = []float64{1, 2, 3}
mutated = make([]float64, len(genome))
)
copy(mutated, genome)
MutSpliceFloat64(mutated, rng)
// Check the length of the mutated genome is consistent
if len(mutated) != len(genome) {
t.Error("Mutated genome has the wrong length")
}
// Check the genes in the initial genome are still present
for _, v := range genome {
if !sliceContainsFloat64(v, mutated) {
t.Error("Gene in initial genome has disappeared")
}
}
}
func TestMutSpliceString(t *testing.T) {
var (
rng = newRand()
genome = []string{"a", "b", "c"}
mutated = make([]string, len(genome))
)
copy(mutated, genome)
MutSpliceString(mutated, rng)
// Check the length of the mutated genome is consistent
if len(mutated) != len(genome) {
t.Error("Mutated genome has the wrong length")
}
// Check the genes in the initial genome are still present
for _, v := range genome {
if !sliceContainsString(v, mutated) {
t.Error("Gene in initial genome has disappeared")
}
}
}