1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-29 23:00:36 +02:00
seaweedfs/weed/shell/command_volume_server_evacuate_test.go
2022-07-12 14:56:34 +05:00

18 lines
333 B
Go

package shell
import (
"os"
"testing"
)
func TestVolumeServerEvacuate(t *testing.T) {
c := commandVolumeServerEvacuate{}
c.topologyInfo = parseOutput(topoData)
volumeServer := "192.168.1.4:8080"
if err := c.evacuateNormalVolumes(nil, volumeServer, true, false, os.Stdout); err != nil {
t.Errorf("evacuate: %v", err)
}
}