You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
481 B
Go
22 lines
481 B
Go
package discov
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/zeromicro/go-zero/core/discov/internal"
|
|
"github.com/zeromicro/go-zero/core/stringx"
|
|
)
|
|
|
|
func TestRegisterAccount(t *testing.T) {
|
|
endpoints := []string{
|
|
"localhost:2379",
|
|
}
|
|
user := "foo" + stringx.Rand()
|
|
RegisterAccount(endpoints, user, "bar")
|
|
account, ok := internal.GetAccount(endpoints)
|
|
assert.True(t, ok)
|
|
assert.Equal(t, user, account.User)
|
|
assert.Equal(t, "bar", account.Pass)
|
|
}
|