Rainbond/builder/exector/groupapp_restore_test.go
2020-09-06 11:09:48 +08:00

84 lines
2.4 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 exector
import (
"testing"
"github.com/sirupsen/logrus"
"github.com/pquerna/ffjson/ffjson"
dbmodel "github.com/goodrain/rainbond/db/model"
"github.com/goodrain/rainbond/event"
"github.com/goodrain/rainbond/util"
)
func TestModify(t *testing.T) {
var b = BackupAPPRestore{
BackupID: "test",
EventID: "test",
serviceChange: make(map[string]*Info, 0),
Logger: event.GetTestLogger(),
}
var appSnapshots = []*RegionServiceSnapshot{
&RegionServiceSnapshot{
ServiceID: "1234",
Service: &dbmodel.TenantServices{
ServiceID: "1234",
},
ServiceMntRelation: []*dbmodel.TenantServiceMountRelation{
&dbmodel.TenantServiceMountRelation{
ServiceID: "1234",
DependServiceID: "123456",
},
},
},
&RegionServiceSnapshot{
ServiceID: "123456",
Service: &dbmodel.TenantServices{
ServiceID: "1234",
},
ServiceEnv: []*dbmodel.TenantServiceEnvVar{
&dbmodel.TenantServiceEnvVar{
ServiceID: "123456",
Name: "testenv",
},
&dbmodel.TenantServiceEnvVar{
ServiceID: "123456",
Name: "testenv2",
},
},
},
}
appSnapshot := AppSnapshot{
Services: appSnapshots,
}
b.modify(&appSnapshot)
re, _ := ffjson.Marshal(appSnapshot)
t.Log(string(re))
}
func TestUnzipAllDataFile(t *testing.T) {
allDataFilePath := "/tmp/__all_data.zip"
allTmpDir := "/tmp/4f25c53e864744ec95d037528acaa708"
if err := util.Unzip(allDataFilePath, allTmpDir); err != nil {
logrus.Errorf("unzip all data file failure %s", err.Error())
}
}