70 lines
2.0 KiB
Go
70 lines
2.0 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 tikv
|
|
|
|
import (
|
|
. "github.com/pingcap/check"
|
|
"github.com/pingcap/tidb/kv"
|
|
"github.com/pingcap/tidb/store/tikv/mock-tikv"
|
|
)
|
|
|
|
type testSplitSuite struct {
|
|
cluster *mocktikv.Cluster
|
|
store *tikvStore
|
|
}
|
|
|
|
var _ = Suite(&testSplitSuite{})
|
|
|
|
func (s *testSplitSuite) SetUpTest(c *C) {
|
|
s.cluster = mocktikv.NewCluster()
|
|
mocktikv.BootstrapWithSingleStore(s.cluster)
|
|
mvccStore := mocktikv.NewMvccStore()
|
|
client := mocktikv.NewRPCClient(s.cluster, mvccStore)
|
|
s.store = newTikvStore("mock-tikv-store", mocktikv.NewPDClient(s.cluster), client)
|
|
}
|
|
|
|
func (s *testSplitSuite) begin(c *C) *tikvTxn {
|
|
txn, err := s.store.Begin()
|
|
c.Assert(err, IsNil)
|
|
return txn.(*tikvTxn)
|
|
}
|
|
|
|
func (s *testSplitSuite) split(c *C, regionID uint64, key []byte) {
|
|
newRegionID, peerID := s.cluster.AllocID(), s.cluster.AllocID()
|
|
s.cluster.Split(regionID, newRegionID, key, []uint64{peerID}, peerID)
|
|
}
|
|
|
|
func (s *testSplitSuite) TestSplitBatchGet(c *C) {
|
|
firstRegion, err := s.store.regionCache.GetRegion([]byte("a"))
|
|
c.Assert(err, IsNil)
|
|
|
|
txn := s.begin(c)
|
|
snapshot := newTiKVSnapshot(s.store, kv.Version{Ver: txn.StartTS()})
|
|
|
|
keys := [][]byte{{'a'}, {'b'}, {'c'}}
|
|
_, region, err := s.store.regionCache.GroupKeysByRegion(keys)
|
|
c.Assert(err, IsNil)
|
|
batch := batchKeys{
|
|
region: region,
|
|
keys: keys,
|
|
}
|
|
|
|
s.split(c, firstRegion.GetID(), []byte("b"))
|
|
s.store.regionCache.DropRegion(firstRegion.VerID())
|
|
|
|
// mock-tikv will panic if it meets a not-in-region key.
|
|
err = snapshot.batchGetSingleRegion(batch, func([]byte, []byte) {})
|
|
c.Assert(err, IsNil)
|
|
}
|