You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
515 B
28 lines
515 B
5 years ago
|
package util
|
||
|
|
||
|
import (
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestRandStringRunes(t *testing.T) {
|
||
|
asserts := assert.New(t)
|
||
|
|
||
|
// 0 长度字符
|
||
|
randStr := RandStringRunes(0)
|
||
|
asserts.Len(randStr, 0)
|
||
|
|
||
|
// 16 长度字符
|
||
|
randStr = RandStringRunes(16)
|
||
|
asserts.Len(randStr, 16)
|
||
|
|
||
|
// 32 长度字符
|
||
|
randStr = RandStringRunes(32)
|
||
|
asserts.Len(randStr, 32)
|
||
|
|
||
|
//相同长度字符
|
||
|
sameLenStr1 := RandStringRunes(32)
|
||
|
sameLenStr2 := RandStringRunes(32)
|
||
|
asserts.NotEqual(sameLenStr1, sameLenStr2)
|
||
|
}
|