mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-23 17:56:03 +08:00
67 lines
1.8 KiB
Go
67 lines
1.8 KiB
Go
// Copyright 2019 Yunion
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package disktool
|
|
|
|
// TODO: use mock ssh server backend test disktool
|
|
/*
|
|
import (
|
|
"testing"
|
|
|
|
"yunion.io/x/log"
|
|
"yunion.io/x/pkg/util/stringutils"
|
|
|
|
"yunion.io/x/onecloud/pkg/compute/baremetal"
|
|
"yunion.io/x/onecloud/pkg/util/ssh"
|
|
)
|
|
|
|
var (
|
|
term *ssh.Client
|
|
)
|
|
|
|
func init() {
|
|
var err error
|
|
term, err = ssh.NewClient("192.168.0.254", 22, "root", "rMw2qrm6Lb5NVpe0", "")
|
|
if err != nil {
|
|
log.Fatalf("Failed to init ssh client: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestSSHCreate(t *testing.T) {
|
|
tool := NewSSHPartitionTool(term)
|
|
err := tool.FetchDiskConfs([]baremetal.DiskConfiguration{
|
|
{
|
|
Adapter: 0,
|
|
Driver: baremetal.DISK_DRIVER_LINUX,
|
|
},
|
|
}).RetrieveDiskInfo()
|
|
if err != nil {
|
|
t.Errorf("Failed to RetrieveDiskInfo: %v", err)
|
|
}
|
|
err = tool.RetrievePartitionInfo()
|
|
if err != nil {
|
|
t.Errorf("Failed to RetrievePartitionInfo: %v", err)
|
|
}
|
|
log.Infof("%s", tool.DebugString())
|
|
|
|
uuid := stringutils.UUID4
|
|
tool.CreatePartition(-1, 32, "swap", true, baremetal.DISK_DRIVER_LINUX, uuid())
|
|
tool.CreatePartition(-1, 1024, "ext4", true, baremetal.DISK_DRIVER_LINUX, uuid())
|
|
err = tool.CreatePartition(-1, -1, "xfs", true, baremetal.DISK_DRIVER_LINUX, uuid())
|
|
//err = tool.ResizePartition(0, 110*1024)
|
|
if err != nil {
|
|
t.Errorf("Failed to resize fs: %v", err)
|
|
}
|
|
}*/
|