2020-12-10 17:55:55 +08:00
|
|
|
package indexbuilder
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestParamTable_Init(t *testing.T) {
|
|
|
|
Params.Init()
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestParamTable_Address(t *testing.T) {
|
|
|
|
address := Params.Address
|
2020-12-13 06:48:05 +08:00
|
|
|
assert.Equal(t, address, "localhost:31000")
|
2020-12-10 17:55:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestParamTable_Port(t *testing.T) {
|
|
|
|
port := Params.Port
|
2020-12-13 06:48:05 +08:00
|
|
|
assert.Equal(t, port, 31000)
|
2020-12-10 17:55:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestParamTable_MetaRootPath(t *testing.T) {
|
|
|
|
path := Params.MetaRootPath
|
|
|
|
assert.Equal(t, path, "by-dev/meta")
|
|
|
|
}
|