-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsprint_test.go
More file actions
117 lines (115 loc) · 1.52 KB
/
sprint_test.go
File metadata and controls
117 lines (115 loc) · 1.52 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
117
package bytecount
import (
"fmt"
"testing"
)
func TestSprint(t *testing.T) {
tests := []struct {
arg float32
want string
}{
{
0,
"0B",
},
{
+1,
"1B",
},
{
-1,
"-1B",
},
{
1023,
"1.00kB",
},
{
999.5,
"0.98kB",
},
{
1024 + 512,
"1.50kB",
},
{
10 * 1024,
"10.0kB",
},
{
100 * 1024,
"100kB",
},
{
999 * 1024,
"999kB",
},
{
1000 * 1024,
"0.98MB",
},
{
1010 * 1024,
"0.99MB",
},
{
1023 * 1024,
"1.00MB",
},
{
1024 * 1024,
"1.00MB",
},
{
1025 * 1024,
"1.00MB",
},
{
1024 * 1024 * 1024,
"1.00GB",
},
{
1024 * 1024 * 1024 * 1024,
"1.00TB",
},
{
1024 * 1024 * 1024 * 1024 * 1024,
"1.00PB",
},
{
1024 * 1024 * 1024 * 1024 * 1024 * 1024,
"1.00EB",
},
{
1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024,
"1.00ZB",
},
{
1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024,
"1.00YB",
},
{
10 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024,
"10.0YB",
},
{
1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024,
"1.00RB",
},
{
1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024,
"1.00QB",
},
{
1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024 * 1024,
"1024QB",
},
}
for _, tt := range tests {
t.Run(fmt.Sprintf("%.0f", tt.arg), func(t *testing.T) {
if got := Sprint(tt.arg); got != tt.want {
t.Errorf("Sprint() = %v, want %v", got, tt.want)
}
})
}
}