2020-09-15 14:44:11 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
_ "github.com/go-sql-driver/mysql"
|
2020-11-02 14:37:05 +08:00
|
|
|
"github.com/iwind/TeaGo/dbs"
|
2020-09-17 10:16:00 +08:00
|
|
|
"testing"
|
2020-09-15 14:44:11 +08:00
|
|
|
)
|
2020-09-17 10:16:00 +08:00
|
|
|
|
|
|
|
|
func TestHTTPWebDAO_UpdateWebShutdown(t *testing.T) {
|
|
|
|
|
{
|
|
|
|
|
err := SharedHTTPWebDAO.UpdateWebShutdown(1, []byte("{}"))
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
err := SharedHTTPWebDAO.UpdateWebShutdown(1, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
t.Log("ok")
|
|
|
|
|
}
|
2020-11-02 14:37:05 +08:00
|
|
|
|
|
|
|
|
func TestHTTPWebDAO_FindAllWebIdsWithHTTPFirewallPolicyId(t *testing.T) {
|
|
|
|
|
dbs.NotifyReady()
|
|
|
|
|
|
|
|
|
|
webIds, err := SharedHTTPWebDAO.FindAllWebIdsWithHTTPFirewallPolicyId(9)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
t.Log("webIds:", webIds)
|
|
|
|
|
|
|
|
|
|
count, err := SharedServerDAO.CountEnabledServersWithWebIds(webIds)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
t.Log("count:", count)
|
|
|
|
|
}
|