2021-08-18 09:24:18 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
import (
|
2024-07-27 14:15:25 +08:00
|
|
|
"testing"
|
|
|
|
|
|
2021-09-15 10:44:25 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/nodeconfigs"
|
2021-08-18 09:24:18 +08:00
|
|
|
_ "github.com/go-sql-driver/mysql"
|
|
|
|
|
_ "github.com/iwind/TeaGo/bootstrap"
|
|
|
|
|
)
|
2021-09-15 10:44:25 +08:00
|
|
|
|
|
|
|
|
func TestNodeIPAddressDAO_FindFirstNodeAccessIPAddress(t *testing.T) {
|
|
|
|
|
var dao = NewNodeIPAddressDAO()
|
2022-04-23 12:32:30 +08:00
|
|
|
t.Log(dao.FindFirstNodeAccessIPAddress(nil, 48, true, nodeconfigs.NodeRoleNode))
|
|
|
|
|
t.Log(dao.FindFirstNodeAccessIPAddressId(nil, 48, true, nodeconfigs.NodeRoleNode))
|
|
|
|
|
}
|