forked from mingrammer/flog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
option_test.go
94 lines (70 loc) · 2.58 KB
/
option_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
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestParseFormat(t *testing.T) {
a := assert.New(t)
format, err := ParseFormat("apache_common")
a.Equal("apache_common", format, "format should be apache_common")
a.NoError(err, "there should be no error")
format, err = ParseFormat("unknown")
a.Equal("", format, "format should be empty string when invalid format is given")
a.Error(err, "there should be an error when invalid format is given")
}
func TestParseNumber(t *testing.T) {
a := assert.New(t)
number, err := ParseNumber(1000)
a.Equal(1000, number, "number should be 1000")
a.NoError(err, "there should be no error")
number, err = ParseNumber(-1000)
a.Equal(0, number, "number should be 0 when negative is given")
a.Error(err, "there should be an error when negative is given")
}
func TestParseBytes(t *testing.T) {
a := assert.New(t)
bytes, err := ParseBytes(1024 * 1024)
a.Equal(1024*1024, bytes, "bytes should be 1048576")
a.NoError(err, "there should be no error")
bytes, err = ParseBytes(-1024)
a.Equal(0, bytes, "bytes should be 0 when negative is given")
a.Error(err, "there should be an error when negative is given")
}
func TestParseSleep(t *testing.T) {
a := assert.New(t)
sleep, err := ParseSleep(10)
a.Equal(10.0, sleep, "sleep should be 10")
a.NoError(err, "there should be no error")
sleep, err = ParseSleep(5.5)
a.Equal(5.5, sleep, "sleep should be 5.5")
a.NoError(err, "there should be no error")
sleep, err = ParseSleep(-10)
a.Equal(0.0, sleep, "sleep should be 0 when negative is given")
a.Error(err, "there should be an error when negative is given")
}
func TestParseDelay(t *testing.T) {
a := assert.New(t)
delay, err := ParseDelay(10)
a.Equal(10.0, delay, "delay should be 10")
a.NoError(err, "there should be no error")
delay, err = ParseDelay(5.5)
a.Equal(5.5, delay, "delay should be 5.5")
a.NoError(err, "there should be no error")
delay, err = ParseDelay(-10)
a.Equal(0.0, delay, "delay should be 0 when negative is given")
a.Error(err, "there should be an error when negative is given")
}
func TestParseSplitBy(t *testing.T) {
a := assert.New(t)
splitBy, err := ParseSplitBy(200)
a.Equal(200, splitBy, "split-by should be 200")
a.NoError(err, "there should be no error")
splitBy, err = ParseSplitBy(-200)
a.Equal(0, splitBy, "split-by should be 0 when negative is given")
a.Error(err, "there should be an error when negative is given")
}
func TestParseOptions(t *testing.T) {
a := assert.New(t)
option := ParseOptions()
a.Equal(defaultOptions(), option, "without flags, option should be default one")
}