mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
28 lines
370 B
Go
28 lines
370 B
Go
package storage
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
|
)
|
|
|
|
func TestSortVolumeInfos(t *testing.T) {
|
|
vis := []*VolumeInfo{
|
|
&VolumeInfo{
|
|
Id: 2,
|
|
},
|
|
&VolumeInfo{
|
|
Id: 1,
|
|
},
|
|
&VolumeInfo{
|
|
Id: 3,
|
|
},
|
|
}
|
|
sortVolumeInfos(vis)
|
|
for i := 0; i < len(vis); i++ {
|
|
if vis[i].Id != needle.VolumeId(i+1) {
|
|
t.Fatal()
|
|
}
|
|
}
|
|
}
|