forked from h2non/imaginary
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhealth_fuzz_test.go
79 lines (74 loc) · 1.94 KB
/
health_fuzz_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
/*
* SPDX-License-Identifier: AGPL-3.0-only
*
* Copyright (c) 2025 sycured
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package main
import (
"math"
"testing"
)
func FuzzToMegaBytes(f *testing.F) {
f.Add(uint64(0))
f.Add(uint64(1024))
f.Add(uint64(1024 * 1024))
f.Add(uint64(^uint64(0))) // Max uint64
f.Add(uint64(1))
f.Add(uint64(1023))
f.Add(uint64(1025))
f.Add(uint64(2048))
f.Add(uint64(4294967295)) // Max uint32
f.Fuzz(func(t *testing.T, value uint64) {
result := toMegaBytes(value)
t.Logf("Input: %v ; Output: %v", value, result)
})
}
func FuzzRound(f *testing.F) {
f.Add(0.0)
f.Add(1.5)
f.Add(-1.5)
f.Add(1e20)
f.Add(-1e20)
f.Add(math.NaN())
f.Add(math.Inf(1))
f.Add(math.Inf(-1))
f.Add(-0.0)
f.Add(2.2250738585072014e-308)
f.Add(-2.2250738585072014e-308)
f.Add(3.4028234663852886e+38)
f.Fuzz(func(t *testing.T, value float64) {
result := round(value)
t.Logf("Input: %v ; Output: %v", value, result)
})
}
func FuzzToFixed(f *testing.F) {
f.Add(0.0, 0)
f.Add(1.2345, 2)
f.Add(-1.2345, 3)
f.Add(math.NaN(), 1)
f.Add(math.Inf(1), 1)
f.Add(math.Inf(-1), 1)
f.Add(1e308, 2)
f.Add(-1e308, 2)
f.Add(1.0, -1)
f.Add(-1.0, -2)
f.Add(0.0, 10)
f.Add(1.23456789, 8)
f.Add(-1.23456789, 8)
f.Fuzz(func(t *testing.T, num float64, precision int) {
result := toFixed(num, precision)
t.Logf("Input Num: %v ; Input Precision %v ; Output: %v", num, precision, result)
})
}