Rainbond/db/gateway_db_test.go
2018-12-18 19:15:21 +08:00

143 lines
3.5 KiB
Go

// RAINBOND, Application Management Platform
// Copyright (C) 2014-2017 Goodrain Co., Ltd.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version. For any non-GPL usage of Rainbond,
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
// must be obtained first.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package db
import (
dbconfig "github.com/goodrain/rainbond/db/config"
"github.com/goodrain/rainbond/db/model"
"github.com/goodrain/rainbond/util"
"testing"
)
func TestIPPortImpl_UpdateModel(t *testing.T) {
if err := CreateManager(dbconfig.Config{
DBType: "sqlite3",
}); err != nil {
t.Fatal(err)
}
tx := GetManager().Begin()
tx.Delete(model.IPPort{})
tx.Commit()
ipport := &model.IPPort{
UUID: util.NewUUID(),
IP: "127.0.0.1",
Port: 8888,
}
if err := GetManager().IPPortDao().AddModel(ipport); err != nil {
t.Fatal(err)
}
ipport.Port = 9999
err := GetManager().IPPortDao().UpdateModel(ipport)
if err != nil {
t.Fatal(err)
}
}
func TestIPPortImpl_DeleteIPPortByIPAndPort(t *testing.T) {
if err := CreateManager(dbconfig.Config{
DBType: "sqlite3",
}); err != nil {
t.Fatal(err)
}
tx := GetManager().Begin()
tx.Delete(model.IPPort{})
tx.Commit()
ipport := &model.IPPort{
UUID: util.NewUUID(),
IP: "127.0.0.1",
Port: 8888,
}
if err := GetManager().IPPortDao().AddModel(ipport); err != nil {
t.Fatal(err)
}
if err := GetManager().IPPortDao().DeleteByIPAndPort(ipport.IP, ipport.Port); err != nil {
t.Fatal(err)
}
ipPort, err := GetManager().IPPortDao().GetIPPortByIPAndPort(ipport.IP, ipport.Port)
if err != nil {
t.Fatal(err)
}
if ipPort != nil {
t.Errorf("Expected nil for ipPort, but return %v", ipPort)
}
}
func TestIPPortImpl_GetIPByPort(t *testing.T) {
if err := CreateManager(dbconfig.Config{
DBType: "sqlite3",
}); err != nil {
t.Fatal(err)
}
tx := GetManager().Begin()
tx.Delete(model.IPPort{})
tx.Commit()
ipport := &model.IPPort{
UUID: util.NewUUID(),
IP: "127.0.0.1",
Port: 8888,
}
if err := GetManager().IPPortDao().AddModel(ipport); err != nil {
t.Fatal(err)
}
ports, err := GetManager().IPPortDao().GetIPByPort(8888)
if err != nil {
t.Fatal(err)
}
if len(ports) != 1 {
t.Fatalf("Expected 1 for length of ports, but returned %d)", len(ports))
}
}
func TestIPPortImpl_GetIPPortByIPAndPort(t *testing.T) {
if err := CreateManager(dbconfig.Config{
DBType: "sqlite3",
}); err != nil {
t.Fatal(err)
}
tx := GetManager().Begin()
tx.Delete(model.IPPort{})
tx.Commit()
ipport := &model.IPPort{
UUID: util.NewUUID(),
IP: "127.0.0.1",
Port: 8888,
}
if err := GetManager().IPPortDao().AddModel(ipport); err != nil {
t.Fatal(err)
}
ipPort, err := GetManager().IPPortDao().GetIPPortByIPAndPort(ipport.IP, ipport.Port)
if err != nil {
t.Fatal(err)
}
if ipPort.IP != ipport.IP {
t.Errorf("Expected %s for ip, but retruned %s", ipport.IP, ipPort.IP)
}
if ipPort.Port != ipport.Port {
t.Errorf("Expected %d for port, but retruned %d", ipport.Port, ipPort.Port)
}
}