talent-plan-tinykv/scheduler/server/core/storage_test.go
Connor 5e089a2cd1 init course framework
Signed-off-by: Connor <zbk602423539@gmail.com>
Co-authored-by: Nick Cameron <nrc@ncameron.org>
Co-authored-by: linning <linningde25@gmail.com>
Co-authored-by: YangKeao <keao.yang@yahoo.com>
Co-authored-by: andylokandy <andylokandy@hotmail.com>
Co-authored-by: Iosmanthus Teng <myosmanthustree@gmail.com>
2020-04-30 15:25:07 +08:00

118 lines
3.3 KiB
Go

// Copyright 2016 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package core
import (
"math"
"github.com/pingcap-incubator/tinykv/proto/pkg/metapb"
"github.com/pingcap-incubator/tinykv/scheduler/server/kv"
. "github.com/pingcap/check"
)
var _ = Suite(&testKVSuite{})
type testKVSuite struct {
}
func (s *testKVSuite) TestBasic(c *C) {
storage := NewStorage(kv.NewMemoryKV())
c.Assert(storage.storePath(123), Equals, "raft/s/00000000000000000123")
c.Assert(regionPath(123), Equals, "raft/r/00000000000000000123")
meta := &metapb.Cluster{Id: 123}
ok, err := storage.LoadMeta(meta)
c.Assert(ok, IsFalse)
c.Assert(err, IsNil)
c.Assert(storage.SaveMeta(meta), IsNil)
newMeta := &metapb.Cluster{}
ok, err = storage.LoadMeta(newMeta)
c.Assert(ok, IsTrue)
c.Assert(err, IsNil)
c.Assert(newMeta, DeepEquals, meta)
store := &metapb.Store{Id: 123}
ok, err = storage.LoadStore(123, store)
c.Assert(ok, IsFalse)
c.Assert(err, IsNil)
c.Assert(storage.SaveStore(store), IsNil)
newStore := &metapb.Store{}
ok, err = storage.LoadStore(123, newStore)
c.Assert(ok, IsTrue)
c.Assert(err, IsNil)
c.Assert(newStore, DeepEquals, store)
}
func mustSaveStores(c *C, s *Storage, n int) []*metapb.Store {
stores := make([]*metapb.Store, 0, n)
for i := 0; i < n; i++ {
store := &metapb.Store{Id: uint64(i)}
stores = append(stores, store)
}
for _, store := range stores {
c.Assert(s.SaveStore(store), IsNil)
}
return stores
}
func (s *testKVSuite) TestLoadStores(c *C) {
storage := NewStorage(kv.NewMemoryKV())
cache := NewStoresInfo()
n := 10
stores := mustSaveStores(c, storage, n)
c.Assert(storage.LoadStores(cache.SetStore), IsNil)
c.Assert(cache.GetStoreCount(), Equals, n)
for _, store := range cache.GetMetaStores() {
c.Assert(store, DeepEquals, stores[store.GetId()])
}
}
func (s *testKVSuite) TestStoreWeight(c *C) {
storage := NewStorage(kv.NewMemoryKV())
cache := NewStoresInfo()
const n = 3
mustSaveStores(c, storage, n)
c.Assert(storage.SaveStoreWeight(1, 2.0, 3.0), IsNil)
c.Assert(storage.SaveStoreWeight(2, 0.2, 0.3), IsNil)
c.Assert(storage.LoadStores(cache.SetStore), IsNil)
leaderWeights := []float64{1.0, 2.0, 0.2}
regionWeights := []float64{1.0, 3.0, 0.3}
for i := 0; i < n; i++ {
c.Assert(cache.GetStore(uint64(i)).GetLeaderWeight(), Equals, leaderWeights[i])
c.Assert(cache.GetStore(uint64(i)).GetRegionWeight(), Equals, regionWeights[i])
}
}
func (s *testKVSuite) TestLoadGCSafePoint(c *C) {
storage := NewStorage(kv.NewMemoryKV())
testData := []uint64{0, 1, 2, 233, 2333, 23333333333, math.MaxUint64}
r, e := storage.LoadGCSafePoint()
c.Assert(r, Equals, uint64(0))
c.Assert(e, IsNil)
for _, safePoint := range testData {
err := storage.SaveGCSafePoint(safePoint)
c.Assert(err, IsNil)
safePoint1, err := storage.LoadGCSafePoint()
c.Assert(err, IsNil)
c.Assert(safePoint, Equals, safePoint1)
}
}