mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
2e2f426fe2
specific calls and is not OS-agnostic.
31 lines
630 B
Go
31 lines
630 B
Go
package metastore
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestMemoryBacking(t *testing.T) {
|
|
ms := &MetaStore{NewMetaStoreMemoryBacking()}
|
|
verifySetGet(t, ms)
|
|
}
|
|
|
|
func TestFileBacking(t *testing.T) {
|
|
ms := &MetaStore{NewMetaStoreFileBacking()}
|
|
verifySetGet(t, ms)
|
|
}
|
|
|
|
func verifySetGet(t *testing.T, ms *MetaStore) {
|
|
data := uint64(234234)
|
|
ms.SetUint64("/tmp/sequence", data)
|
|
if !ms.Has("/tmp/sequence") {
|
|
t.Errorf("Failed to set data")
|
|
}
|
|
if val, err := ms.GetUint64("/tmp/sequence"); err == nil {
|
|
if val != data {
|
|
t.Errorf("Set %d, but read back %d", data, val)
|
|
}
|
|
} else {
|
|
t.Errorf("Failed to get back data:%s", err)
|
|
}
|
|
}
|