mirror of https://github.com/ouqiang/gocron
增加utils测试文件
parent
4b0da2fb09
commit
0f41bc6a65
|
@ -0,0 +1,31 @@
|
|||
package utils
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestExecShell(t *testing.T) {
|
||||
_, err := ExecShell("ls")
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
||||
func TestRandString(t *testing.T) {
|
||||
str := RandString(32)
|
||||
if len(str) != 32 {
|
||||
t.Fatalf("长度不匹配,目标长度32, 实际%d-%s", len(str), str)
|
||||
}
|
||||
}
|
||||
|
||||
func TestMd5(t *testing.T) {
|
||||
str := Md5("123456")
|
||||
if len(str) != 32 {
|
||||
t.Fatalf("长度不匹配,目标长度32, 实际%d-%s", len(str), str)
|
||||
}
|
||||
}
|
||||
|
||||
func TestRandNumber(t *testing.T) {
|
||||
num := RandNumber(10000)
|
||||
if num <= 0 && num >= 10000 {
|
||||
t.Fatalf("随机数不在有效范围内-%d", num)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue