mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-21 02:57:46 -05:00
487 lines
15 KiB
Go
487 lines
15 KiB
Go
// Copyright 2019 Liquidata, 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,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
// This file incorporates work covered by the following copyright and
|
|
// permission notice:
|
|
//
|
|
// Copyright 2016 Attic Labs, Inc. All rights reserved.
|
|
// Licensed under the Apache License, version 2.0:
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
package datas
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"io"
|
|
"io/ioutil"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/liquidata-inc/dolt/go/store/chunks"
|
|
"github.com/liquidata-inc/dolt/go/store/d"
|
|
"github.com/liquidata-inc/dolt/go/store/hash"
|
|
"github.com/liquidata-inc/dolt/go/store/nbs"
|
|
"github.com/liquidata-inc/dolt/go/store/types"
|
|
)
|
|
|
|
const datasetID = "ds1"
|
|
|
|
func TestLocalToLocalPulls(t *testing.T) {
|
|
suite.Run(t, &LocalToLocalSuite{})
|
|
}
|
|
|
|
func TestRemoteToLocalPulls(t *testing.T) {
|
|
suite.Run(t, &RemoteToLocalSuite{})
|
|
}
|
|
|
|
func TestLocalToRemotePulls(t *testing.T) {
|
|
suite.Run(t, &LocalToRemoteSuite{})
|
|
}
|
|
|
|
func TestRemoteToRemotePulls(t *testing.T) {
|
|
suite.Run(t, &RemoteToRemoteSuite{})
|
|
}
|
|
|
|
type PullSuite struct {
|
|
suite.Suite
|
|
sinkCS *chunks.TestStoreView
|
|
sourceCS *chunks.TestStoreView
|
|
sink Database
|
|
source Database
|
|
commitReads int // The number of reads triggered by commit differs across chunk store impls
|
|
}
|
|
|
|
func makeTestStoreViews() (ts1, ts2 *chunks.TestStoreView) {
|
|
st1, st2 := &chunks.TestStorage{}, &chunks.TestStorage{}
|
|
return st1.NewView(), st2.NewView()
|
|
}
|
|
|
|
type LocalToLocalSuite struct {
|
|
PullSuite
|
|
}
|
|
|
|
func (suite *LocalToLocalSuite) SetupTest() {
|
|
suite.sinkCS, suite.sourceCS = makeTestStoreViews()
|
|
suite.sink = NewDatabase(suite.sinkCS)
|
|
suite.source = NewDatabase(suite.sourceCS)
|
|
}
|
|
|
|
type RemoteToLocalSuite struct {
|
|
PullSuite
|
|
}
|
|
|
|
func (suite *RemoteToLocalSuite) SetupTest() {
|
|
suite.sinkCS, suite.sourceCS = makeTestStoreViews()
|
|
suite.sink = NewDatabase(suite.sinkCS)
|
|
suite.source = makeRemoteDb(suite.sourceCS)
|
|
}
|
|
|
|
type LocalToRemoteSuite struct {
|
|
PullSuite
|
|
}
|
|
|
|
func (suite *LocalToRemoteSuite) SetupTest() {
|
|
suite.sinkCS, suite.sourceCS = makeTestStoreViews()
|
|
suite.sink = makeRemoteDb(suite.sinkCS)
|
|
suite.source = NewDatabase(suite.sourceCS)
|
|
suite.commitReads = 1
|
|
}
|
|
|
|
type RemoteToRemoteSuite struct {
|
|
PullSuite
|
|
}
|
|
|
|
func (suite *RemoteToRemoteSuite) SetupTest() {
|
|
suite.sinkCS, suite.sourceCS = makeTestStoreViews()
|
|
suite.sink = makeRemoteDb(suite.sinkCS)
|
|
suite.source = makeRemoteDb(suite.sourceCS)
|
|
suite.commitReads = 1
|
|
}
|
|
|
|
func makeRemoteDb(cs chunks.ChunkStore) Database {
|
|
return NewDatabase(cs)
|
|
}
|
|
|
|
func (suite *PullSuite) TearDownTest() {
|
|
suite.sink.Close()
|
|
suite.source.Close()
|
|
suite.sinkCS.Close()
|
|
suite.sourceCS.Close()
|
|
}
|
|
|
|
type progressTracker struct {
|
|
Ch chan PullProgress
|
|
doneCh chan []PullProgress
|
|
}
|
|
|
|
func startProgressTracker() *progressTracker {
|
|
pt := &progressTracker{make(chan PullProgress), make(chan []PullProgress)}
|
|
go func() {
|
|
progress := []PullProgress{}
|
|
for info := range pt.Ch {
|
|
progress = append(progress, info)
|
|
}
|
|
pt.doneCh <- progress
|
|
}()
|
|
return pt
|
|
}
|
|
|
|
func (pt *progressTracker) Validate(suite *PullSuite) {
|
|
close(pt.Ch)
|
|
progress := <-pt.doneCh
|
|
|
|
// Expecting exact progress would be unreliable and not necessary meaningful. Instead, just validate that it's useful and consistent.
|
|
suite.NotEmpty(progress)
|
|
|
|
first := progress[0]
|
|
suite.Zero(first.DoneCount)
|
|
suite.True(first.KnownCount > 0)
|
|
suite.Zero(first.ApproxWrittenBytes)
|
|
|
|
last := progress[len(progress)-1]
|
|
suite.True(last.DoneCount > 0)
|
|
suite.Equal(last.DoneCount, last.KnownCount)
|
|
|
|
for i, prog := range progress {
|
|
suite.True(prog.KnownCount >= prog.DoneCount)
|
|
if i > 0 {
|
|
prev := progress[i-1]
|
|
suite.True(prog.DoneCount >= prev.DoneCount)
|
|
suite.True(prog.ApproxWrittenBytes >= prev.ApproxWrittenBytes)
|
|
}
|
|
}
|
|
}
|
|
|
|
// Source: -3-> C(L2) -1-> N
|
|
// \ -2-> L1 -1-> N
|
|
// \ -1-> L0
|
|
//
|
|
// Sink: Nada
|
|
func (suite *PullSuite) TestPullEverything() {
|
|
expectedReads := suite.sinkCS.Reads
|
|
|
|
l := buildListOfHeight(2, suite.source)
|
|
sourceRef := suite.commitToSource(l, mustSet(types.NewSet(context.Background(), suite.source)))
|
|
pt := startProgressTracker()
|
|
|
|
err := Pull(context.Background(), suite.source, suite.sink, sourceRef, pt.Ch)
|
|
suite.NoError(err)
|
|
suite.True(expectedReads-suite.sinkCS.Reads <= suite.commitReads)
|
|
pt.Validate(suite)
|
|
|
|
v := mustValue(suite.sink.ReadValue(context.Background(), sourceRef.TargetHash())).(types.Struct)
|
|
suite.NotNil(v)
|
|
suite.True(l.Equals(mustGetValue(v.MaybeGet(ValueField))))
|
|
}
|
|
|
|
// Source: -6-> C3(L5) -1-> N
|
|
// . \ -5-> L4 -1-> N
|
|
// . \ -4-> L3 -1-> N
|
|
// . \ -3-> L2 -1-> N
|
|
// 5 \ -2-> L1 -1-> N
|
|
// . \ -1-> L0
|
|
// C2(L4) -1-> N
|
|
// . \ -4-> L3 -1-> N
|
|
// . \ -3-> L2 -1-> N
|
|
// . \ -2-> L1 -1-> N
|
|
// 3 \ -1-> L0
|
|
// .
|
|
// C1(L2) -1-> N
|
|
// \ -2-> L1 -1-> N
|
|
// \ -1-> L0
|
|
//
|
|
// Sink: -3-> C1(L2) -1-> N
|
|
// \ -2-> L1 -1-> N
|
|
// \ -1-> L0
|
|
func (suite *PullSuite) TestPullMultiGeneration() {
|
|
sinkL := buildListOfHeight(2, suite.sink)
|
|
suite.commitToSink(sinkL, mustSet(types.NewSet(context.Background(), suite.sink)))
|
|
expectedReads := suite.sinkCS.Reads
|
|
|
|
srcL := buildListOfHeight(2, suite.source)
|
|
sourceRef := suite.commitToSource(srcL, mustSet(types.NewSet(context.Background(), suite.source)))
|
|
srcL = buildListOfHeight(4, suite.source)
|
|
sourceRef = suite.commitToSource(srcL, mustSet(types.NewSet(context.Background(), suite.source, sourceRef)))
|
|
srcL = buildListOfHeight(5, suite.source)
|
|
sourceRef = suite.commitToSource(srcL, mustSet(types.NewSet(context.Background(), suite.source, sourceRef)))
|
|
|
|
pt := startProgressTracker()
|
|
|
|
err := Pull(context.Background(), suite.source, suite.sink, sourceRef, pt.Ch)
|
|
suite.NoError(err)
|
|
|
|
suite.True(expectedReads-suite.sinkCS.Reads <= suite.commitReads)
|
|
pt.Validate(suite)
|
|
|
|
v, err := suite.sink.ReadValue(context.Background(), sourceRef.TargetHash())
|
|
suite.NoError(err)
|
|
suite.NotNil(v)
|
|
suite.True(srcL.Equals(mustGetValue(v.(types.Struct).MaybeGet(ValueField))))
|
|
}
|
|
|
|
// Source: -6-> C2(L5) -1-> N
|
|
// . \ -5-> L4 -1-> N
|
|
// . \ -4-> L3 -1-> N
|
|
// . \ -3-> L2 -1-> N
|
|
// 4 \ -2-> L1 -1-> N
|
|
// . \ -1-> L0
|
|
// C1(L3) -1-> N
|
|
// \ -3-> L2 -1-> N
|
|
// \ -2-> L1 -1-> N
|
|
// \ -1-> L0
|
|
//
|
|
// Sink: -5-> C3(L3') -1-> N
|
|
// . \ -3-> L2 -1-> N
|
|
// . \ \ -2-> L1 -1-> N
|
|
// . \ \ -1-> L0
|
|
// . \ - "oy!"
|
|
// 4
|
|
// .
|
|
// C1(L3) -1-> N
|
|
// \ -3-> L2 -1-> N
|
|
// \ -2-> L1 -1-> N
|
|
// \ -1-> L0
|
|
func (suite *PullSuite) TestPullDivergentHistory() {
|
|
sinkL := buildListOfHeight(3, suite.sink)
|
|
sinkRef := suite.commitToSink(sinkL, mustSet(types.NewSet(context.Background(), suite.sink)))
|
|
srcL := buildListOfHeight(3, suite.source)
|
|
sourceRef := suite.commitToSource(srcL, mustSet(types.NewSet(context.Background(), suite.source)))
|
|
|
|
var err error
|
|
sinkL, err = sinkL.Edit().Append(types.String("oy!")).List(context.Background())
|
|
suite.NoError(err)
|
|
sinkRef = suite.commitToSink(sinkL, mustSet(types.NewSet(context.Background(), suite.sink, sinkRef)))
|
|
srcL, err = srcL.Edit().Set(1, buildListOfHeight(5, suite.source)).List(context.Background())
|
|
suite.NoError(err)
|
|
sourceRef = suite.commitToSource(srcL, mustSet(types.NewSet(context.Background(), suite.source, sourceRef)))
|
|
preReads := suite.sinkCS.Reads
|
|
|
|
pt := startProgressTracker()
|
|
|
|
err = Pull(context.Background(), suite.source, suite.sink, sourceRef, pt.Ch)
|
|
suite.NoError(err)
|
|
|
|
suite.True(preReads-suite.sinkCS.Reads <= suite.commitReads)
|
|
pt.Validate(suite)
|
|
|
|
v, err := suite.sink.ReadValue(context.Background(), sourceRef.TargetHash())
|
|
suite.NoError(err)
|
|
suite.NotNil(v)
|
|
suite.True(srcL.Equals(mustGetValue(v.(types.Struct).MaybeGet(ValueField))))
|
|
}
|
|
|
|
// Source: -6-> C2(L4) -1-> N
|
|
// . \ -4-> L3 -1-> N
|
|
// . \ -3-> L2 -1-> N
|
|
// . \ - "oy!"
|
|
// 5 \ -2-> L1 -1-> N
|
|
// . \ -1-> L0
|
|
// C1(L4) -1-> N
|
|
// \ -4-> L3 -1-> N
|
|
// \ -3-> L2 -1-> N
|
|
// \ -2-> L1 -1-> N
|
|
// \ -1-> L0
|
|
// Sink: -5-> C1(L4) -1-> N
|
|
// \ -4-> L3 -1-> N
|
|
// \ -3-> L2 -1-> N
|
|
// \ -2-> L1 -1-> N
|
|
// \ -1-> L0
|
|
func (suite *PullSuite) TestPullUpdates() {
|
|
sinkL := buildListOfHeight(4, suite.sink)
|
|
suite.commitToSink(sinkL, mustSet(types.NewSet(context.Background(), suite.sink)))
|
|
expectedReads := suite.sinkCS.Reads
|
|
|
|
srcL := buildListOfHeight(4, suite.source)
|
|
sourceRef := suite.commitToSource(srcL, mustSet(types.NewSet(context.Background(), suite.source)))
|
|
L3 := mustValue(mustValue(srcL.Get(context.Background(), 1)).(types.Ref).TargetValue(context.Background(), suite.source)).(types.List)
|
|
L2 := mustValue(mustValue(L3.Get(context.Background(), 1)).(types.Ref).TargetValue(context.Background(), suite.source)).(types.List)
|
|
L2Ed := L2.Edit().Append(mustRef(suite.source.WriteValue(context.Background(), types.String("oy!"))))
|
|
L2, err := L2Ed.List(context.Background())
|
|
suite.NoError(err)
|
|
L3Ed := L3.Edit().Set(1, mustRef(suite.source.WriteValue(context.Background(), L2)))
|
|
L3, err = L3Ed.List(context.Background())
|
|
suite.NoError(err)
|
|
srcLEd := srcL.Edit().Set(1, mustRef(suite.source.WriteValue(context.Background(), L3)))
|
|
srcL, err = srcLEd.List(context.Background())
|
|
suite.NoError(err)
|
|
sourceRef = suite.commitToSource(srcL, mustSet(types.NewSet(context.Background(), suite.source, sourceRef)))
|
|
|
|
pt := startProgressTracker()
|
|
|
|
err = Pull(context.Background(), suite.source, suite.sink, sourceRef, pt.Ch)
|
|
suite.NoError(err)
|
|
|
|
suite.True(expectedReads-suite.sinkCS.Reads <= suite.commitReads)
|
|
pt.Validate(suite)
|
|
|
|
v, err := suite.sink.ReadValue(context.Background(), sourceRef.TargetHash())
|
|
suite.NoError(err)
|
|
suite.NotNil(v)
|
|
suite.True(srcL.Equals(mustGetValue(v.(types.Struct).MaybeGet(ValueField))))
|
|
}
|
|
|
|
func (suite *PullSuite) commitToSource(v types.Value, p types.Set) types.Ref {
|
|
ds, err := suite.source.GetDataset(context.Background(), datasetID)
|
|
suite.NoError(err)
|
|
ds, err = suite.source.Commit(context.Background(), ds, v, CommitOptions{Parents: p})
|
|
suite.NoError(err)
|
|
return mustHeadRef(ds)
|
|
}
|
|
|
|
func (suite *PullSuite) commitToSink(v types.Value, p types.Set) types.Ref {
|
|
ds, err := suite.sink.GetDataset(context.Background(), datasetID)
|
|
suite.NoError(err)
|
|
ds, err = suite.sink.Commit(context.Background(), ds, v, CommitOptions{Parents: p})
|
|
suite.NoError(err)
|
|
return mustHeadRef(ds)
|
|
}
|
|
|
|
func buildListOfHeight(height int, vrw types.ValueReadWriter) types.List {
|
|
unique := 0
|
|
l, err := types.NewList(context.Background(), vrw, types.Float(unique), types.Float(unique+1))
|
|
d.PanicIfError(err)
|
|
unique += 2
|
|
|
|
for i := 0; i < height; i++ {
|
|
r1, err := vrw.WriteValue(context.Background(), types.Float(unique))
|
|
d.PanicIfError(err)
|
|
r2, err := vrw.WriteValue(context.Background(), l)
|
|
d.PanicIfError(err)
|
|
unique++
|
|
l, err = types.NewList(context.Background(), vrw, r1, r2)
|
|
d.PanicIfError(err)
|
|
}
|
|
return l
|
|
}
|
|
|
|
type TestTableFile struct {
|
|
fileID string
|
|
numChunks int
|
|
data []byte
|
|
}
|
|
|
|
func (ttf *TestTableFile) FileID() string {
|
|
return ttf.fileID
|
|
}
|
|
|
|
func (ttf *TestTableFile) NumChunks() int {
|
|
return ttf.numChunks
|
|
}
|
|
|
|
func (ttf *TestTableFile) Open() (io.ReadCloser, error) {
|
|
return ioutil.NopCloser(bytes.NewReader(ttf.data)), nil
|
|
}
|
|
|
|
type TestTableFileWriter struct {
|
|
fileID string
|
|
numChunks int
|
|
writer *bytes.Buffer
|
|
ttfs *TestTableFileStore
|
|
}
|
|
|
|
func (ttfWr *TestTableFileWriter) Write(data []byte) (int, error) {
|
|
return ttfWr.writer.Write(data)
|
|
}
|
|
|
|
func (ttfWr *TestTableFileWriter) Close(ctx context.Context) error {
|
|
data := ttfWr.writer.Bytes()
|
|
ttfWr.writer = nil
|
|
|
|
ttfWr.ttfs.tableFiles[ttfWr.fileID] = &TestTableFile{ttfWr.fileID, ttfWr.numChunks, data}
|
|
return nil
|
|
}
|
|
|
|
type TestTableFileStore struct {
|
|
root hash.Hash
|
|
tableFiles map[string]nbs.TableFile
|
|
}
|
|
|
|
func (ttfs *TestTableFileStore) Sources(ctx context.Context) (hash.Hash, []nbs.TableFile, error) {
|
|
var tblFiles []nbs.TableFile
|
|
for _, tblFile := range ttfs.tableFiles {
|
|
tblFiles = append(tblFiles, tblFile)
|
|
}
|
|
|
|
return ttfs.root, tblFiles, nil
|
|
}
|
|
|
|
func (ttfs *TestTableFileStore) WriteTableFile(ctx context.Context, fileId string, numChunks int, rd io.Reader) error {
|
|
tblFile := &TestTableFileWriter{fileId, numChunks, bytes.NewBuffer(nil), ttfs}
|
|
_, err := io.Copy(tblFile, rd)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return tblFile.Close(ctx)
|
|
}
|
|
|
|
func (ttfs *TestTableFileStore) SetRootChunk(ctx context.Context, root, previous hash.Hash) error {
|
|
ttfs.root = root
|
|
return nil
|
|
}
|
|
|
|
func TestClone(t *testing.T) {
|
|
hashBytes := [hash.ByteLen]byte{0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x10, 0x11, 0x12, 0x13}
|
|
src := &TestTableFileStore{
|
|
root: hash.Of(hashBytes[:]),
|
|
tableFiles: map[string]nbs.TableFile{
|
|
"file1": &TestTableFile{
|
|
fileID: "file1",
|
|
numChunks: 1,
|
|
data: []byte("Call me Ishmael. Some years ago—never mind how long precisely—having little or no money in my purse, "),
|
|
},
|
|
"file2": &TestTableFile{
|
|
fileID: "file2",
|
|
numChunks: 2,
|
|
data: []byte("and nothing particular to interest me on shore, I thought I would sail about a little and see the watery "),
|
|
},
|
|
"file3": &TestTableFile{
|
|
fileID: "file3",
|
|
numChunks: 3,
|
|
data: []byte("part of the world. It is a way I have of driving off the spleen and regulating the "),
|
|
},
|
|
"file4": &TestTableFile{
|
|
fileID: "file4",
|
|
numChunks: 4,
|
|
data: []byte("circulation. Whenever I find myself growing grim about the mouth; whenever it is a damp, drizzly "),
|
|
},
|
|
"file5": &TestTableFile{
|
|
fileID: "file5",
|
|
numChunks: 5,
|
|
data: []byte("November in my soul; whenever I find myself involuntarily pausing before coffin warehouses, and bringing "),
|
|
},
|
|
},
|
|
}
|
|
|
|
dest := &TestTableFileStore{
|
|
root: hash.Hash{},
|
|
tableFiles: map[string]nbs.TableFile{},
|
|
}
|
|
|
|
ctx := context.Background()
|
|
err := clone(ctx, src, dest, nil)
|
|
require.NoError(t, err)
|
|
|
|
err = dest.SetRootChunk(ctx, src.root, hash.Hash{})
|
|
require.NoError(t, err)
|
|
|
|
assert.True(t, reflect.DeepEqual(src, dest))
|
|
}
|