convert_test.go 5.37 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package flatfs_test

import (
	"bytes"
	"encoding/hex"
	"io/ioutil"
	"os"
	"path/filepath"
	"testing"

	"github.com/ipfs/go-datastore"
	"github.com/ipfs/go-ds-flatfs"
	//"gx/ipfs/QmRWDav6mzWseLWeYfVd5fvUKiVe9xNH29YfMF438fG364/go-datastore/query"

	rand "github.com/dustin/randbo"
)

func TestMove(t *testing.T) {
	tempdir, cleanup := tempdir(t)
	defer cleanup()

	v1dir := filepath.Join(tempdir, "v1")
Kevin Atkinson's avatar
Kevin Atkinson committed
23 24 25
	createDatastore(t, v1dir, flatfs.Prefix(3))

	err := ioutil.WriteFile(filepath.Join(v1dir, "README_ALSO"), []byte("something"), 0666)
26
	if err != nil {
Kevin Atkinson's avatar
Kevin Atkinson committed
27
		t.Fatalf("WriteFile fail: %v\n", err)
28
	}
Kevin Atkinson's avatar
Kevin Atkinson committed
29 30 31 32 33 34 35

	keys, blocks := populateDatastore(t, v1dir)

	v2dir := filepath.Join(tempdir, "v2")
	createDatastore(t, v2dir, flatfs.NextToLast(2))

	err = flatfs.Move(v1dir, v2dir, nil)
36
	if err != nil {
Kevin Atkinson's avatar
Kevin Atkinson committed
37
		t.Fatalf("%v\n", err)
38
	}
Kevin Atkinson's avatar
Kevin Atkinson committed
39 40 41 42 43 44

	// make sure the directory empty
	rmEmptyDatastore(t, v1dir)

	// make sure the README file moved
	_, err = os.Stat(filepath.Join(v2dir, "README_ALSO"))
45
	if err != nil {
Kevin Atkinson's avatar
Kevin Atkinson committed
46
		t.Fatalf(err.Error())
47 48
	}

Kevin Atkinson's avatar
Kevin Atkinson committed
49 50
	// check that all keys are available
	checkKeys(t, v2dir, keys, blocks)
51

Kevin Atkinson's avatar
Kevin Atkinson committed
52 53 54 55 56
	// check that a key is in the correct format
	shard := filepath.Join(v2dir, flatfs.NextToLast(2).Func()(keys[0].String()))
	_, err = os.Stat(shard)
	if err != nil {
		t.Fatalf(err.Error())
57
	}
Kevin Atkinson's avatar
Kevin Atkinson committed
58
}
59

Kevin Atkinson's avatar
Kevin Atkinson committed
60 61 62 63 64
func TestMoveRestart(t *testing.T) {
	tempdir, cleanup := tempdir(t)
	defer cleanup()

	v1dir := filepath.Join(tempdir, "v1")
65
	v2dir := filepath.Join(tempdir, "v2")
Kevin Atkinson's avatar
Kevin Atkinson committed
66 67 68 69 70 71 72 73 74 75 76 77 78 79

	createDatastore(t, v1dir, flatfs.Prefix(3))

	createDatastore(t, v2dir, flatfs.NextToLast(5))

	keys, blocks := populateDatastore(t, v1dir)
	checkKeys(t, v1dir, keys, blocks)

	// get a directory in the datastore
	noslash := keys[0].String()[1:]
	aDir := filepath.Join(tempdir, "v1", flatfs.Prefix(3).Func()(noslash))

	// create a permission problem on the directory
	err := os.Chmod(aDir, 0500)
80
	if err != nil {
Kevin Atkinson's avatar
Kevin Atkinson committed
81
		t.Fatalf("%v\n", err)
82 83
	}

Kevin Atkinson's avatar
Kevin Atkinson committed
84 85 86 87
	// try the move it should fail partly through
	err = flatfs.Move(v1dir, v2dir, nil)
	if err == nil {
		t.Fatalf("Move should have failed.", err)
88 89
	}

Kevin Atkinson's avatar
Kevin Atkinson committed
90 91
	// okay try to undo should be okay
	err = flatfs.Move(v2dir, v1dir, nil)
92
	if err != nil {
Kevin Atkinson's avatar
Kevin Atkinson committed
93
		t.Fatalf("Could not undo the move.", err)
94
	}
Kevin Atkinson's avatar
Kevin Atkinson committed
95
	checkKeys(t, v1dir, keys, blocks)
96

Kevin Atkinson's avatar
Kevin Atkinson committed
97 98
	// there should be nothing left in the new datastore
	rmEmptyDatastore(t, v2dir)
99

Kevin Atkinson's avatar
Kevin Atkinson committed
100 101 102 103 104
	// try the move again, again should fail
	createDatastore(t, v2dir, flatfs.NextToLast(2))
	err = flatfs.Move(v1dir, v2dir, nil)
	if err == nil {
		t.Fatalf("Move should have failed.", err)
105 106
	}

Kevin Atkinson's avatar
Kevin Atkinson committed
107 108
	// fix the permission problem
	err = os.Chmod(aDir, 0700)
109
	if err != nil {
Kevin Atkinson's avatar
Kevin Atkinson committed
110
		t.Fatalf("%v\n", err)
111
	}
Kevin Atkinson's avatar
Kevin Atkinson committed
112 113 114 115 116

	// restart the move, it should be okay now
	err = flatfs.Move(v1dir, v2dir, nil)
	if err != nil {
		t.Fatalf("Move not okay: %v\n", err)
117 118
	}

Kevin Atkinson's avatar
Kevin Atkinson committed
119 120 121 122 123 124 125
	// make sure everything moved by removing the old directory
	rmEmptyDatastore(t, v1dir)

	// make sure everything moved by checking all keys
	checkKeys(t, v2dir, keys, blocks)

	// check that a key is in the correct format
126 127 128 129 130 131
	shard := filepath.Join(v2dir, flatfs.NextToLast(2).Func()(keys[0].String()))
	_, err = os.Stat(shard)
	if err != nil {
		t.Fatalf(err.Error())
	}
}
Kevin Atkinson's avatar
Kevin Atkinson committed
132 133 134 135 136 137 138 139 140 141

func TestUpgradeDownload(t *testing.T) {
	tempdir, cleanup := tempdir(t)
	defer cleanup()

	createDatastore(t, tempdir, flatfs.Prefix(3))

	keys, blocks := populateDatastore(t, tempdir)
	checkKeys(t, tempdir, keys, blocks)

142 143 144 145
	err := flatfs.UpgradeV0toV1(tempdir, 3)
	if err == nil {
		t.Fatalf("UpgradeV0toV1 on already v1 should fail.")
	}
Kevin Atkinson's avatar
Kevin Atkinson committed
146

147
	err = flatfs.DowngradeV1toV0(tempdir)
Kevin Atkinson's avatar
Kevin Atkinson committed
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
	if err != nil {
		t.Fatalf("DowngradeV1toV0 fail: %v\n", err)
	}

	_, err = os.Stat(filepath.Join(tempdir, flatfs.SHARDING_FN))
	if err == nil {
		t.Fatalf("%v not in v0 format, SHARDING FILE exists")
	} else if !os.IsNotExist(err) {
		t.Fatalf("Stat fail: %v\n", err)
	}

	err = flatfs.UpgradeV0toV1(tempdir, 3)
	if err != nil {
		t.Fatalf("UpgradeV0toV1 fail %v\n", err)
	}

	// This will fail unless the repository is in the new version
	checkKeys(t, tempdir, keys, blocks)
}

168 169 170 171 172 173 174 175 176 177 178 179
func TestDownloadNonPrefix(t *testing.T) {
	tempdir, cleanup := tempdir(t)
	defer cleanup()

	createDatastore(t, tempdir, flatfs.NextToLast(2))

	err := flatfs.DowngradeV1toV0(tempdir)
	if err == nil {
		t.Fatalf("DowngradeV1toV0 should have failed", err)
	}
}

Kevin Atkinson's avatar
Kevin Atkinson committed
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
func createDatastore(t *testing.T, dir string, fun *flatfs.ShardIdV1) {
	err := flatfs.Create(dir, fun)
	if err != nil {
		t.Fatalf("Create fail: %s: %v\n", dir, err)
	}
}

func rmEmptyDatastore(t *testing.T, dir string) {
	err := os.Remove(dir)
	if err != nil {
		t.Fatalf("Remove fail: %v\n", err)
	}
}

func populateDatastore(t *testing.T, dir string) ([]datastore.Key, [][]byte) {
	ds, err := flatfs.Open(dir, false)
	if err != nil {
		t.Fatalf("Open fail: %v\n", err)
	}

	r := rand.New()
	var blocks [][]byte
	var keys []datastore.Key
	for i := 0; i < 256; i++ {
		blk := make([]byte, 1000)
		r.Read(blk)
		blocks = append(blocks, blk)

		key := "x" + hex.EncodeToString(blk[:8])
		keys = append(keys, datastore.NewKey(key))
		err := ds.Put(keys[i], blocks[i])
		if err != nil {
			t.Fatalf("Put fail: %v\n", err)
		}
	}

	return keys, blocks
}

func checkKeys(t *testing.T, dir string, keys []datastore.Key, blocks [][]byte) {
	ds, err := flatfs.Open(dir, false)
	if err != nil {
		t.Fatalf("Open fail: %v\n", err)
	}

	for i, key := range keys {
		data, err := ds.Get(key)
		if err != nil {
			t.Fatalf("Get fail: %v\n", err)
		}
		if !bytes.Equal(data.([]byte), blocks[i]) {
			t.Fatalf("block context differ for key %s\n", key.String())
		}
	}
}