mirror of https://github.com/fatedier/frp
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.
23 lines
385 B
23 lines
385 B
package util
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRandId(t *testing.T) {
|
|
assert := assert.New(t)
|
|
id, err := RandId()
|
|
assert.NoError(err)
|
|
t.Log(id)
|
|
assert.Equal(16, len(id))
|
|
}
|
|
|
|
func TestGetAuthKey(t *testing.T) {
|
|
assert := assert.New(t)
|
|
key := GetAuthKey("1234", 1488720000)
|
|
t.Log(key)
|
|
assert.Equal("6df41a43725f0c770fd56379e12acf8c", key)
|
|
}
|