2018-03-14 14:12:26 +08:00
|
|
|
|
// Copyright (C) 2014-2018 Goodrain Co., Ltd.
|
2017-11-07 11:40:44 +08:00
|
|
|
|
// RAINBOND, Application Management Platform
|
2018-03-14 14:33:31 +08:00
|
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
|
// 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.
|
2018-03-14 14:33:31 +08:00
|
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
|
// 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.
|
2018-03-14 14:33:31 +08:00
|
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
|
// 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 (
|
2019-03-11 01:07:10 +08:00
|
|
|
|
"context"
|
2019-12-12 11:59:02 +08:00
|
|
|
|
"encoding/json"
|
2018-12-03 17:02:19 +08:00
|
|
|
|
"fmt"
|
2018-02-01 15:30:30 +08:00
|
|
|
|
"testing"
|
|
|
|
|
"time"
|
|
|
|
|
|
2019-12-12 11:59:02 +08:00
|
|
|
|
"github.com/testcontainers/testcontainers-go"
|
|
|
|
|
|
2018-04-24 16:44:59 +08:00
|
|
|
|
dbconfig "github.com/goodrain/rainbond/db/config"
|
|
|
|
|
"github.com/goodrain/rainbond/db/model"
|
|
|
|
|
"github.com/goodrain/rainbond/util"
|
2017-11-07 11:40:44 +08:00
|
|
|
|
)
|
|
|
|
|
|
2019-03-11 01:07:10 +08:00
|
|
|
|
func CreateTestManager() (Manager, error) {
|
|
|
|
|
dbname := "region"
|
|
|
|
|
rootpw := "rainbond"
|
|
|
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
req := testcontainers.ContainerRequest{
|
|
|
|
|
Image: "mariadb",
|
|
|
|
|
ExposedPorts: []string{"3306/tcp"},
|
|
|
|
|
Env: map[string]string{
|
|
|
|
|
"MYSQL_ROOT_PASSWORD": rootpw,
|
|
|
|
|
"MYSQL_DATABASE": dbname,
|
|
|
|
|
},
|
|
|
|
|
Cmd: "--character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci",
|
|
|
|
|
}
|
|
|
|
|
mariadb, err := testcontainers.GenericContainer(ctx, testcontainers.GenericContainerRequest{
|
|
|
|
|
ContainerRequest: req,
|
|
|
|
|
Started: true,
|
|
|
|
|
})
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
defer mariadb.Terminate(ctx)
|
|
|
|
|
|
|
|
|
|
host, err := mariadb.Host(ctx)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
port, err := mariadb.MappedPort(ctx, "3306")
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
connInfo := fmt.Sprintf("%s:%s@tcp(%s:%d)/%s", "root",
|
|
|
|
|
rootpw, host, port.Int(), dbname)
|
|
|
|
|
tryTimes := 3
|
|
|
|
|
for {
|
|
|
|
|
if err := CreateManager(dbconfig.Config{
|
|
|
|
|
DBType: "mysql",
|
|
|
|
|
MysqlConnectionInfo: connInfo,
|
|
|
|
|
}); err != nil {
|
|
|
|
|
if tryTimes == 0 {
|
|
|
|
|
return nil, fmt.Errorf("Connect info: %s; error creating db manager: %v", connInfo, err)
|
|
|
|
|
}
|
|
|
|
|
tryTimes = tryTimes - 1
|
|
|
|
|
time.Sleep(10 * time.Second)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
return GetManager(), nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
|
func TestTenantDao(t *testing.T) {
|
|
|
|
|
if err := CreateManager(dbconfig.Config{
|
|
|
|
|
MysqlConnectionInfo: "root:admin@tcp(127.0.0.1:3306)/region",
|
|
|
|
|
DBType: "mysql",
|
|
|
|
|
}); err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
2018-05-04 11:49:52 +08:00
|
|
|
|
err := GetManager().TenantDao().AddModel(&model.Tenants{
|
|
|
|
|
Name: "barnett4",
|
|
|
|
|
UUID: util.NewUUID(),
|
|
|
|
|
})
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
2017-11-07 11:40:44 +08:00
|
|
|
|
tenant, err := GetManager().TenantDao().GetTenantByUUID("27bbdd119b24444696dc51aa2f41eef8")
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
t.Log(tenant)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestTenantServiceDao(t *testing.T) {
|
|
|
|
|
if err := CreateManager(dbconfig.Config{
|
|
|
|
|
MysqlConnectionInfo: "root:admin@tcp(127.0.0.1:3306)/region",
|
|
|
|
|
DBType: "mysql",
|
|
|
|
|
}); err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
service, err := GetManager().TenantServiceDao().GetServiceByTenantIDAndServiceAlias("27bbdd119b24444696dc51aa2f41eef8", "grb58f90")
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
t.Log(service)
|
|
|
|
|
service, err = GetManager().TenantServiceDao().GetServiceByID("2f29882148c19f5f84e3a7cedf6097c7")
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
t.Log(service)
|
|
|
|
|
services, err := GetManager().TenantServiceDao().GetServiceAliasByIDs([]string{"2f29882148c19f5f84e3a7cedf6097c7"})
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
for _, s := range services {
|
|
|
|
|
t.Log(s)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestGetServiceEnvs(t *testing.T) {
|
|
|
|
|
if err := CreateManager(dbconfig.Config{
|
|
|
|
|
MysqlConnectionInfo: "root:admin@tcp(127.0.0.1:3306)/region",
|
|
|
|
|
DBType: "mysql",
|
|
|
|
|
}); err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
envs, err := GetManager().TenantServiceEnvVarDao().GetServiceEnvs("2f29882148c19f5f84e3a7cedf6097c7", nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
for _, e := range envs {
|
|
|
|
|
t.Log(e)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestSetServiceLabel(t *testing.T) {
|
|
|
|
|
if err := CreateManager(dbconfig.Config{
|
|
|
|
|
MysqlConnectionInfo: "root:admin@tcp(127.0.0.1:3306)/region",
|
|
|
|
|
DBType: "mysql",
|
|
|
|
|
}); err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
label := model.TenantServiceLable{
|
2020-02-18 22:41:18 +08:00
|
|
|
|
LabelKey: "labelkey",
|
|
|
|
|
LabelValue: "labelvalue",
|
2017-11-07 11:40:44 +08:00
|
|
|
|
ServiceID: "889bb1f028f655bebd545f24aa184a0b",
|
|
|
|
|
}
|
|
|
|
|
label.CreatedAt = time.Now()
|
|
|
|
|
label.ID = 1
|
|
|
|
|
err := GetManager().TenantServiceLabelDao().UpdateModel(&label)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestCreateTenantServiceLBMappingPort(t *testing.T) {
|
|
|
|
|
if err := CreateManager(dbconfig.Config{
|
|
|
|
|
MysqlConnectionInfo: "root:admin@tcp(127.0.0.1:3306)/region",
|
|
|
|
|
DBType: "mysql",
|
|
|
|
|
}); err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
mapPort, err := GetManager().TenantServiceLBMappingPortDao().CreateTenantServiceLBMappingPort("889bb1f028f655bebd545f24aa184a0b", 8080)
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
t.Log(mapPort)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestCreateTenantServiceLBMappingPortTran(t *testing.T) {
|
|
|
|
|
if err := CreateManager(dbconfig.Config{
|
|
|
|
|
MysqlConnectionInfo: "root:admin@tcp(127.0.0.1:3306)/region",
|
|
|
|
|
DBType: "mysql",
|
|
|
|
|
}); err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
tx := GetManager().Begin()
|
|
|
|
|
mapPort, err := GetManager().TenantServiceLBMappingPortDaoTransactions(tx).CreateTenantServiceLBMappingPort("889bb1f028f655bebd545f24aa184a0b", 8082)
|
|
|
|
|
if err != nil {
|
2018-02-01 15:30:30 +08:00
|
|
|
|
tx.Rollback()
|
2017-11-07 11:40:44 +08:00
|
|
|
|
t.Fatal(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
tx.Commit()
|
|
|
|
|
t.Log(mapPort)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestGetMem(t *testing.T) {
|
|
|
|
|
if err := CreateManager(dbconfig.Config{
|
|
|
|
|
MysqlConnectionInfo: "admin:admin@tcp(127.0.0.1:3306)/region",
|
|
|
|
|
DBType: "mysql",
|
|
|
|
|
}); err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
// err := GetManager().TenantDao().AddModel(&model.Tenants{
|
|
|
|
|
// Name: "barnett3",
|
|
|
|
|
// UUID: util.NewUUID(),
|
|
|
|
|
// })
|
|
|
|
|
// if err != nil {
|
|
|
|
|
// t.Fatal(err)
|
|
|
|
|
// }
|
2018-04-27 18:36:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-28 10:44:17 +08:00
|
|
|
|
func TestCockroachDBCreateTable(t *testing.T) {
|
|
|
|
|
if err := CreateManager(dbconfig.Config{
|
|
|
|
|
MysqlConnectionInfo: "postgresql://root@localhost:5432/region?sslmode=disable",
|
|
|
|
|
DBType: "cockroachdb",
|
|
|
|
|
}); err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-27 18:36:44 +08:00
|
|
|
|
func TestCockroachDBCreateService(t *testing.T) {
|
|
|
|
|
if err := CreateManager(dbconfig.Config{
|
|
|
|
|
MysqlConnectionInfo: "postgresql://root@localhost:5432/region?sslmode=disable",
|
|
|
|
|
DBType: "cockroachdb",
|
|
|
|
|
}); err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
2018-05-04 11:49:52 +08:00
|
|
|
|
err := GetManager().TenantServiceDao().AddModel(&model.TenantServices{
|
2018-04-27 18:36:44 +08:00
|
|
|
|
TenantID: "asdasd",
|
|
|
|
|
ServiceID: "asdasdasdasd",
|
|
|
|
|
ServiceAlias: "grasdasdasdads",
|
|
|
|
|
})
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestCockroachDBDeleteService(t *testing.T) {
|
|
|
|
|
if err := CreateManager(dbconfig.Config{
|
|
|
|
|
MysqlConnectionInfo: "postgresql://root@localhost:5432/region?sslmode=disable",
|
|
|
|
|
DBType: "cockroachdb",
|
|
|
|
|
}); err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
err := GetManager().TenantServiceDao().DeleteServiceByServiceID("asdasdasdasd")
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
2017-11-07 11:40:44 +08:00
|
|
|
|
}
|
2018-04-27 18:47:27 +08:00
|
|
|
|
|
2018-11-26 20:37:50 +08:00
|
|
|
|
//func TestCockroachDBSaveDeployInfo(t *testing.T) {
|
|
|
|
|
// if err := CreateManager(dbconfig.Config{
|
|
|
|
|
// MysqlConnectionInfo: "postgresql://root@localhost:5432/region?sslmode=disable",
|
|
|
|
|
// DBType: "cockroachdb",
|
|
|
|
|
// }); err != nil {
|
|
|
|
|
// t.Fatal(err)
|
|
|
|
|
// }
|
|
|
|
|
// err := GetManager().K8sDeployReplicationDao().AddModel(&model.K8sDeployReplication{
|
|
|
|
|
// TenantID: "asdasd",
|
|
|
|
|
// ServiceID: "asdasdasdasd",
|
|
|
|
|
// ReplicationID: "asdasdadsasdasdasd",
|
|
|
|
|
// ReplicationType: model.TypeReplicationController,
|
|
|
|
|
// })
|
|
|
|
|
// if err != nil {
|
|
|
|
|
// t.Fatal(err)
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
//func TestCockroachDBDeleteDeployInfo(t *testing.T) {
|
|
|
|
|
// if err := CreateManager(dbconfig.Config{
|
|
|
|
|
// MysqlConnectionInfo: "postgresql://root@localhost:5432/region?sslmode=disable",
|
|
|
|
|
// DBType: "cockroachdb",
|
|
|
|
|
// }); err != nil {
|
|
|
|
|
// t.Fatal(err)
|
|
|
|
|
// }
|
2019-02-12 15:40:42 +08:00
|
|
|
|
//err := GetManager().K8sDeployReplicationDao().DeleteK8sDeployReplication("asdasdadsasdasdasd")
|
|
|
|
|
//if err != nil {
|
|
|
|
|
// t.Fatal(err)
|
|
|
|
|
//}
|
2018-11-26 20:37:50 +08:00
|
|
|
|
//}
|
|
|
|
|
|
2018-12-03 17:02:19 +08:00
|
|
|
|
func TestGetCertificateByID(t *testing.T) {
|
|
|
|
|
if err := CreateManager(dbconfig.Config{
|
2018-12-04 11:54:43 +08:00
|
|
|
|
MysqlConnectionInfo: "admin:admin@tcp(127.0.0.1:3306)/region",
|
2018-12-03 17:02:19 +08:00
|
|
|
|
DBType: "mysql",
|
|
|
|
|
}); err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-04 11:54:43 +08:00
|
|
|
|
cert, err := GetManager().TenantServiceLabelDao().GetTenantNodeAffinityLabel("105bb7d4b94774f922edb3051bdf8ce1")
|
2018-12-03 17:02:19 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
fmt.Println(cert)
|
|
|
|
|
}
|
2019-12-12 11:59:02 +08:00
|
|
|
|
|
|
|
|
|
var shareFileVolumeType = &model.TenantServiceVolumeType{
|
|
|
|
|
VolumeType: "share-file",
|
|
|
|
|
NameShow: "共享存储(文件)",
|
|
|
|
|
Description: "分布式文件存储,可租户内共享挂载,适用于所有类型应用",
|
|
|
|
|
// CapacityValidation: string(bs),
|
2019-12-18 13:41:41 +08:00
|
|
|
|
ReclaimPolicy: "Retain",
|
|
|
|
|
BackupPolicy: "exclusive",
|
|
|
|
|
SharePolicy: "exclusive",
|
|
|
|
|
AccessMode: "RWO,ROX,RWX",
|
2019-12-12 11:59:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var localVolumeType = &model.TenantServiceVolumeType{
|
|
|
|
|
VolumeType: "local",
|
|
|
|
|
NameShow: "本地存储",
|
|
|
|
|
Description: "本地存储设备,适用于有状态数据库服务",
|
|
|
|
|
// CapacityValidation: string(bs),
|
2019-12-18 13:41:41 +08:00
|
|
|
|
ReclaimPolicy: "Retain",
|
|
|
|
|
BackupPolicy: "exclusive",
|
|
|
|
|
SharePolicy: "exclusive",
|
|
|
|
|
AccessMode: "RWO,ROX,RWX",
|
2019-12-12 11:59:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var memoryFSVolumeType = &model.TenantServiceVolumeType{
|
|
|
|
|
VolumeType: "memoryfs",
|
|
|
|
|
NameShow: "内存文件存储",
|
|
|
|
|
Description: "基于内存的存储设备,容量由内存量限制。应用重启数据即丢失,适用于高速暂存数据",
|
|
|
|
|
// CapacityValidation: string(bs),
|
2019-12-18 13:41:41 +08:00
|
|
|
|
ReclaimPolicy: "Retain",
|
|
|
|
|
BackupPolicy: "exclusive",
|
|
|
|
|
SharePolicy: "exclusive",
|
|
|
|
|
AccessMode: "RWO,ROX,RWX",
|
2019-12-12 11:59:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var alicloudDiskAvailableVolumeType = &model.TenantServiceVolumeType{
|
|
|
|
|
VolumeType: "alicloud-disk-available",
|
|
|
|
|
NameShow: "阿里云盘(智能选择)",
|
|
|
|
|
Description: "阿里云智能选择云盘。会通过高效云盘、SSD、基础云盘的顺序依次尝试创建当前阿里云区域支持的云盘类型",
|
|
|
|
|
// CapacityValidation: string(bs),
|
2019-12-18 13:41:41 +08:00
|
|
|
|
ReclaimPolicy: "Delete",
|
|
|
|
|
BackupPolicy: "exclusive",
|
|
|
|
|
SharePolicy: "exclusive",
|
|
|
|
|
AccessMode: "RWO",
|
|
|
|
|
Sort: 10,
|
2019-12-12 11:59:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var alicloudDiskcommonVolumeType = &model.TenantServiceVolumeType{
|
|
|
|
|
VolumeType: "alicloud-disk-common",
|
|
|
|
|
NameShow: "阿里云盘(基础)",
|
|
|
|
|
Description: "阿里云普通基础云盘。最小限额5G",
|
|
|
|
|
// CapacityValidation: string(bs),
|
2019-12-18 13:41:41 +08:00
|
|
|
|
ReclaimPolicy: "Delete",
|
|
|
|
|
BackupPolicy: "exclusive",
|
|
|
|
|
SharePolicy: "exclusive",
|
|
|
|
|
AccessMode: "RWO",
|
|
|
|
|
Sort: 13,
|
2019-12-12 11:59:02 +08:00
|
|
|
|
}
|
|
|
|
|
var alicloudDiskEfficiencyVolumeType = &model.TenantServiceVolumeType{
|
|
|
|
|
VolumeType: "alicloud-disk-efficiency",
|
|
|
|
|
NameShow: "阿里云盘(高效)",
|
|
|
|
|
Description: "阿里云高效云盘。最小限额20G",
|
|
|
|
|
// CapacityValidation: string(bs),
|
2019-12-18 13:41:41 +08:00
|
|
|
|
ReclaimPolicy: "Delete",
|
|
|
|
|
BackupPolicy: "exclusive",
|
|
|
|
|
SharePolicy: "exclusive",
|
|
|
|
|
AccessMode: "RWO",
|
|
|
|
|
Sort: 11,
|
2019-12-12 11:59:02 +08:00
|
|
|
|
}
|
|
|
|
|
var alicloudDiskeSSDVolumeType = &model.TenantServiceVolumeType{
|
|
|
|
|
VolumeType: "alicloud-disk-ssd",
|
|
|
|
|
NameShow: "阿里云盘(SSD)",
|
|
|
|
|
Description: "阿里云SSD类型云盘。最小限额20G",
|
|
|
|
|
// CapacityValidation: string(bs),
|
2019-12-18 13:41:41 +08:00
|
|
|
|
ReclaimPolicy: "Delete",
|
|
|
|
|
BackupPolicy: "exclusive",
|
|
|
|
|
SharePolicy: "exclusive",
|
|
|
|
|
AccessMode: "RWO",
|
|
|
|
|
Sort: 12,
|
2019-12-12 11:59:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestVolumeType(t *testing.T) {
|
|
|
|
|
|
|
|
|
|
capacityValidation := make(map[string]interface{})
|
|
|
|
|
capacityValidation["required"] = true
|
|
|
|
|
capacityValidation["default"] = 20
|
|
|
|
|
capacityValidation["min"] = 20
|
|
|
|
|
capacityValidation["max"] = 32768 // [ali-cloud-disk usage limit](https://help.aliyun.com/document_detail/25412.html?spm=5176.2020520101.0.0.41d84df5faliP4)
|
|
|
|
|
bs, _ := json.Marshal(capacityValidation)
|
|
|
|
|
shareFileVolumeType.CapacityValidation = string(bs)
|
|
|
|
|
localVolumeType.CapacityValidation = string(bs)
|
|
|
|
|
memoryFSVolumeType.CapacityValidation = string(bs)
|
|
|
|
|
alicloudDiskeSSDVolumeType.CapacityValidation = string(bs)
|
|
|
|
|
if err := CreateManager(dbconfig.Config{
|
2019-12-18 13:41:41 +08:00
|
|
|
|
MysqlConnectionInfo: "ieZoo9:Maigoed0@tcp(192.168.2.108:3306)/region",
|
2019-12-12 11:59:02 +08:00
|
|
|
|
DBType: "mysql",
|
|
|
|
|
}); err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
if err := GetManager().VolumeTypeDao().AddModel(alicloudDiskeSSDVolumeType); err != nil {
|
|
|
|
|
t.Error(err)
|
|
|
|
|
} else {
|
|
|
|
|
t.Log("yes")
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-19 18:03:46 +08:00
|
|
|
|
|
|
|
|
|
func initDBManager(t *testing.T) {
|
2019-12-18 13:41:41 +08:00
|
|
|
|
if err := CreateManager(dbconfig.Config{
|
|
|
|
|
MysqlConnectionInfo: "ieZoo9:Maigoed0@tcp(192.168.2.108:3306)/region",
|
|
|
|
|
DBType: "mysql",
|
|
|
|
|
}); err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
2019-12-19 18:03:46 +08:00
|
|
|
|
}
|
|
|
|
|
func TestGetVolumeType(t *testing.T) {
|
|
|
|
|
initDBManager(t)
|
2019-12-18 13:41:41 +08:00
|
|
|
|
vts, err := GetManager().VolumeTypeDao().GetAllVolumeTypes()
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
for _, vt := range vts {
|
|
|
|
|
t.Logf("%+v", vt)
|
|
|
|
|
}
|
2019-12-18 15:37:18 +08:00
|
|
|
|
t.Logf("volume type len is : %v", len(vts))
|
2019-12-19 18:03:46 +08:00
|
|
|
|
}
|
2019-12-18 13:41:41 +08:00
|
|
|
|
|
2019-12-19 18:03:46 +08:00
|
|
|
|
func TestGetVolumeTypeByType(t *testing.T) {
|
|
|
|
|
initDBManager(t)
|
2019-12-18 15:37:18 +08:00
|
|
|
|
vt, err := GetManager().VolumeTypeDao().GetVolumeTypeByType("ceph-rbd")
|
2019-12-18 13:41:41 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal("get volumeType by type error: ", err.Error())
|
|
|
|
|
}
|
|
|
|
|
t.Logf("%+v", vt)
|
|
|
|
|
}
|