1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-11 19:46:50 +02:00
This commit is contained in:
Chris Lu 2018-07-11 12:52:48 -07:00
parent f7afa80250
commit 2fd48df9d9

View file

@ -1,11 +1,9 @@
package topology package topology
import ( import (
"fmt"
"github.com/chrislusf/seaweedfs/weed/pb/master_pb" "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
"github.com/chrislusf/seaweedfs/weed/sequence" "github.com/chrislusf/seaweedfs/weed/sequence"
"github.com/chrislusf/seaweedfs/weed/storage" "github.com/chrislusf/seaweedfs/weed/storage"
"github.com/kr/pretty"
"testing" "testing"
) )
@ -113,10 +111,14 @@ func TestAddRemoveVolume(t *testing.T) {
dn.UpdateVolumes([]storage.VolumeInfo{v}) dn.UpdateVolumes([]storage.VolumeInfo{v})
topo.RegisterVolumeLayout(v, dn) topo.RegisterVolumeLayout(v, dn)
fmt.Printf("added volume 1 \n%# v\n", pretty.Formatter(topo.ToMap())) if _, hasCollection := topo.FindCollection(v.Collection); !hasCollection {
t.Errorf("collection %v should exist", v.Collection)
}
topo.UnRegisterVolumeLayout(v, dn) topo.UnRegisterVolumeLayout(v, dn)
fmt.Printf("removed volume 1 \n%# v\n", pretty.Formatter(topo.ToMap())) if _, hasCollection := topo.FindCollection(v.Collection); hasCollection {
t.Errorf("collection %v should not exist", v.Collection)
}
} }