mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 01:20:25 +08:00
159 lines
3.3 KiB
Go
159 lines
3.3 KiB
Go
package models
|
|
|
|
import (
|
|
"crypto/md5"
|
|
"encoding/json"
|
|
_ "github.com/go-sql-driver/mysql"
|
|
"github.com/iwind/TeaGo/dbs"
|
|
"github.com/iwind/TeaGo/logs"
|
|
"testing"
|
|
)
|
|
|
|
func TestServerDAO_ComposeServerConfig(t *testing.T) {
|
|
dbs.NotifyReady()
|
|
var tx *dbs.Tx
|
|
config, err := SharedServerDAO.ComposeServerConfigWithServerId(tx, 1)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
logs.PrintAsJSON(config, t)
|
|
}
|
|
|
|
func TestServerDAO_ComposeServerConfig_AliasServerNames(t *testing.T) {
|
|
dbs.NotifyReady()
|
|
var tx *dbs.Tx
|
|
config, err := SharedServerDAO.ComposeServerConfigWithServerId(tx, 14)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
logs.PrintAsJSON(config.AliasServerNames, t)
|
|
}
|
|
|
|
func TestServerDAO_UpdateServerConfig(t *testing.T) {
|
|
dbs.NotifyReady()
|
|
var tx *dbs.Tx
|
|
config, err := SharedServerDAO.ComposeServerConfigWithServerId(tx, 1)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
configJSON, err := json.Marshal(config)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log(string(configJSON))
|
|
t.Log("ok")
|
|
}
|
|
|
|
func TestNewServerDAO_md5(t *testing.T) {
|
|
m := md5.New()
|
|
_, err := m.Write([]byte("123456"))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
h := m.Sum(nil)
|
|
t.Logf("%x", h)
|
|
}
|
|
|
|
func TestServerDAO_genDNSName(t *testing.T) {
|
|
dbs.NotifyReady()
|
|
var tx *dbs.Tx
|
|
dnsName, err := SharedServerDAO.GenDNSName(tx)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log("dnsName:", dnsName)
|
|
}
|
|
|
|
func TestServerDAO_FindAllServerDNSNamesWithDNSDomainId(t *testing.T) {
|
|
dbs.NotifyReady()
|
|
var tx *dbs.Tx
|
|
dnsNames, err := SharedServerDAO.FindAllServerDNSNamesWithDNSDomainId(tx, 2)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log("dnsNames:", dnsNames)
|
|
}
|
|
|
|
func TestServerDAO_FindAllEnabledServerIdsWithSSLPolicyIds(t *testing.T) {
|
|
dbs.NotifyReady()
|
|
var tx *dbs.Tx
|
|
serverIds, err := SharedServerDAO.FindAllEnabledServerIdsWithSSLPolicyIds(tx, []int64{14})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log("serverIds:", serverIds)
|
|
}
|
|
|
|
func TestServerDAO_CheckPortIsUsing(t *testing.T) {
|
|
dbs.NotifyReady()
|
|
var tx *dbs.Tx
|
|
//{
|
|
// isUsing, err := SharedServerDAO.CheckPortIsUsing(tx, 18, 1234, 0, "")
|
|
// if err != nil {
|
|
// t.Fatal(err)
|
|
// }
|
|
// t.Log("isUsing:", isUsing)
|
|
//}
|
|
{
|
|
isUsing, err := SharedServerDAO.CheckPortIsUsing(tx, 18, 1234, 44, "tcp")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log("isUsing:", isUsing)
|
|
}
|
|
}
|
|
|
|
func TestServerDAO_ExistServerNameInCluster(t *testing.T) {
|
|
dbs.NotifyReady()
|
|
|
|
var tx *dbs.Tx
|
|
{
|
|
exist, err := SharedServerDAO.ExistServerNameInCluster(tx, 18, "hello.teaos.cn", 0)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log(exist)
|
|
}
|
|
|
|
{
|
|
exist, err := SharedServerDAO.ExistServerNameInCluster(tx, 18, "cdn.teaos.cn", 0)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log(exist)
|
|
}
|
|
|
|
{
|
|
exist, err := SharedServerDAO.ExistServerNameInCluster(tx, 18, "cdn.teaos.cn", 23)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log(exist)
|
|
}
|
|
}
|
|
|
|
func TestServerDAO_FindAllEnabledServersWithNode(t *testing.T) {
|
|
dbs.NotifyReady()
|
|
|
|
servers, err := SharedServerDAO.FindAllEnabledServersWithNode(nil, 48)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
for _, server := range servers {
|
|
t.Log("serverId:", server.Id, "clusterId:", server.ClusterId)
|
|
}
|
|
}
|
|
|
|
func BenchmarkServerDAO_CountAllEnabledServers(b *testing.B) {
|
|
SharedServerDAO = NewServerDAO()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
result, err := SharedServerDAO.CountAllEnabledServers(nil)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
_ = result
|
|
}
|
|
}
|