-
Notifications
You must be signed in to change notification settings - Fork 9
/
curiosity_test.go
406 lines (383 loc) · 8.22 KB
/
curiosity_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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
package curiosity
import (
"io"
"net/http"
"net/http/httptest"
"testing"
)
// -------
// Testing
// -------
func Test_GenerateId(t *testing.T) {
testVar := make(map[int]string)
for i := 0; i < 1000; i++ {
testVar[i] = GenerateId() // calling the tested function
}
for _, v1 := range testVar {
count := 0
for _, v2 := range testVar {
if v1 == v2 {
count++
}
}
// work check
if count > 1 {
t.Error("GenerateId() = Error generating unique identifier.")
}
}
}
func Test_MeanValue(t *testing.T) {
type args struct {
num []float64
}
tests := []struct {
name string
args args
want float64
}{
{
name: "MeanValue 10.0 10.0",
args: args{
num: []float64{10.0, 10.0},
},
want: 10.0,
},
{
name: "MeanValue 1.0 2.0 3.0 4.0 5.0",
args: args{
num: []float64{1.0, 2.0, 3.0, 4.0, 5.0},
},
want: 3.0,
},
{
name: "MeanValue 1.0 2.0 3.0 4.0 5.0 10.0 10.0",
args: args{
num: []float64{1.0, 2.0, 3.0, 4.0, 5.0, 10.0, 10.0},
},
want: 5.0,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := MeanValue(tt.args.num); got != tt.want {
t.Errorf("MeanValue() = %v, want %v", got, tt.want)
}
})
}
}
func Test_MedianValue(t *testing.T) {
type args struct {
num []float64
}
tests := []struct {
name string
args args
want float64
}{
{
name: "MedianValue 10.0 10.0",
args: args{
num: []float64{10.0, 10.0},
},
want: 10.0,
},
{
name: "MedianValue 1.0 2.0 3.0 4.0 5.0",
args: args{
num: []float64{1.0, 2.0, 3.0, 4.0, 5.0},
},
want: 3.0,
},
{
name: "MedianValue 1.0 2.0 3.0 4.0 5.0 10.0 10.0",
args: args{
num: []float64{1.0, 2.0, 3.0, 4.0, 5.0, 10.0, 10.0},
},
want: 4.0,
},
{
name: "MedianValue 2.0 1.0 4.0 5.0 3.0",
args: args{
num: []float64{2.0, 1.0, 4.0, 5.0, 3.0},
},
want: 3.0,
},
{
name: "MedianValue 10.0 4.0 1.0 10.0 3.0 2.0 5.0",
args: args{
num: []float64{10.0, 4.0, 1.0, 10.0, 3.0, 2.0, 5.0},
},
want: 4.0,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := MedianValue(tt.args.num); got != tt.want {
t.Errorf("MedianValue() = %v, want %v", got, tt.want)
}
})
}
}
func Test_Variance(t *testing.T) {
type args struct {
num []float64
}
tests := []struct {
name string
args args
want float64
}{
{
name: "Variance 10.0 10.0",
args: args{
num: []float64{10.0, 10.0},
},
want: 0.0,
},
{
name: "Variance 1.0 2.0 3.0 4.0 5.0",
args: args{
num: []float64{1.0, 2.0, 3.0, 4.0, 5.0},
},
want: 2.0,
},
{
name: "Variance 2.0 1.0 4.0 5.0 3.0",
args: args{
num: []float64{2.0, 1.0, 4.0, 5.0, 3.0},
},
want: 2.0,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := Variance(tt.args.num); got != tt.want {
t.Errorf("Variance() = %v, want %v", got, tt.want)
}
})
}
}
func Test_ConcatBuffer(t *testing.T) {
type args struct {
vals []string
}
tests := []struct {
name string
args args
want string
}{
{
name: "Connecting strings via buffer 1",
args: args{
vals: []string{"This ", "is ", "even ", "more ", "performant "},
},
want: "This is even more performant ",
},
{
name: "Connecting strings via buffer 2",
args: args{
vals: []string{"Hello", ", ", "World", "!"},
},
want: "Hello, World!",
},
{
name: "Connecting strings via buffer 3",
args: args{
vals: []string{"Golang ", "is ", "great", "."},
},
want: "Golang is great.",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := ConcatBuffer(tt.args.vals...); got != tt.want {
t.Errorf("ConcatBuffer() = %v, want %v", got, tt.want)
}
})
}
}
func Test_ConcatCopy(t *testing.T) {
type args struct {
len int
vals []string
}
tests := []struct {
name string
args args
want string
}{
{
name: "Connecting strings via copy 1",
args: args{
len: 29,
vals: []string{"This ", "is ", "even ", "more ", "performant "},
},
want: "This is even more performant ",
},
{
name: "Connecting strings via copy 2",
args: args{
len: 13,
vals: []string{"Hello", ", ", "World", "!"},
},
want: "Hello, World!",
},
{
name: "Connecting strings via copy 3",
args: args{
len: 16,
vals: []string{"Golang ", "is ", "great", "."},
},
want: "Golang is great.",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := ConcatCopy(tt.args.len, tt.args.vals...); got != tt.want {
t.Errorf("ConcatCopy() = %v, want %v", got, tt.want)
}
})
}
}
func Test_DeleteCookie(t *testing.T) {
handler := func(w http.ResponseWriter, r *http.Request) {
DeleteCookie(&w, "cookieName") // calling the tested function
io.WriteString(w, "<html><head><title>Title</title></head><body>Body</body></html>")
}
w := httptest.NewRecorder()
r := httptest.NewRequest("GET", "/", nil)
cookie := &http.Cookie{
Name: "cookieName",
Value: "1234567890",
MaxAge: 0,
}
r.AddCookie(cookie)
handler(w, r)
status := w.Code
// work check
if status != http.StatusOK {
t.Errorf("Handler returned %v", status)
}
cookies := w.Result().Cookies()
noErr := true
for _, v := range cookies {
if v.Name == "cookieName" && v.Value == "1234567890" {
noErr = false
}
}
// work check
if !noErr {
t.Error("the server did not delete the cookie")
}
}
func Test_PerformanceTest(t *testing.T) {
count := PerformanceTest() // calling the tested function
// work check
if count < 1 {
t.Error("PerformanceTest() = No operation was performed.")
}
// fmt.Println(count)
}
func Test_UnZipFile(t *testing.T) {
type args struct {
zipFile string
srcFile string
dstFile string
}
tests := []struct {
name string
args args
want bool
}{
{
name: "Correct test.",
args: args{
zipFile: "./testdata/main.zip",
srcFile: "awesome-go-main/README.md",
dstFile: "./testdata/unzipedRM1.md",
},
want: true,
},
{
name: "Incorrect archive.",
args: args{
zipFile: "./testdata/master.zip",
srcFile: "awesome-go-main/README.md",
dstFile: "./testdata/uzerr1.md",
},
want: false,
},
{
name: "The file you are looking for is not correct.",
args: args{
zipFile: "./testdata/main.zip",
srcFile: "awesome-go-main/ERROR.md",
dstFile: "./testdata/ERROR.md",
},
want: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := UnZipFile(tt.args.zipFile, tt.args.srcFile, tt.args.dstFile); got != tt.want {
t.Errorf("UnZipFile() = %v, want %v", got, tt.want)
}
})
}
}
// ------------
// Benchmarking
// ------------
func Benchmark_GenerateId(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = GenerateId() // calling the tested function
}
}
func Benchmark_MeanValue(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = MeanValue([]float64{1.0, 2.0, 3.0, 4.0, 5.0, 10.0, 45.0}) // calling the tested function
}
}
func Benchmark_MedianValue(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = MedianValue([]float64{1.0, 2.0, 3.0, 4.0, 5.0, 10.0, 45.0}) // calling the tested function
}
}
func Benchmark_Variance(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = Variance([]float64{1.0, 2.0, 3.0, 4.0, 5.0, 10.0, 45.0}) // calling the tested function
}
}
func Benchmark_ConcatBuffer(b *testing.B) {
var input = []string{"This ", "is ", "even ", "more ", "performant "}
for i := 0; i < b.N; i++ {
_ = ConcatBuffer(input...) // calling the tested function
}
}
func Benchmark_ConcatCopy(b *testing.B) {
var input = []string{"This ", "is ", "even ", "more ", "performant "}
for i := 0; i < b.N; i++ {
_ = ConcatCopy(29, input...) // calling the tested function
}
}
func Benchmark_DeleteCookie(b *testing.B) {
handler := func(w http.ResponseWriter, r *http.Request) {
DeleteCookie(&w, "cookieName") // calling the tested function
}
w := httptest.NewRecorder()
r := httptest.NewRequest("GET", "/", nil)
cookie := &http.Cookie{
Name: "cookieName",
Value: "1234567890",
MaxAge: 0,
}
r.AddCookie(cookie)
for i := 0; i < b.N; i++ {
handler(w, r)
}
}
func Benchmark_UnZipFile(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = UnZipFile("./testdata/main.zip", "awesome-go-main/README.md", "./testdata/unzipedRM2.md") // calling the tested function
}
}