You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
438 B

2 years ago
  1. package shell
  2. import (
  3. "os"
  4. "testing"
  5. )
  6. func TestVolumeServerEvacuate(t *testing.T) {
  7. targetServer := ""
  8. volumeRack := "rack1"
  9. c := commandVolumeServerEvacuate{
  10. targetServer: &targetServer,
  11. volumeRack: &volumeRack,
  12. }
  13. c.topologyInfo = parseOutput(topoData)
  14. volumeServer := "192.168.1.4:8080"
  15. if err := c.evacuateNormalVolumes(nil, volumeServer, true, false, os.Stdout); err != nil {
  16. t.Errorf("evacuate: %v", err)
  17. }
  18. }