1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
package client
import (
"encoding/json"
"path/filepath"
"testing"
. "gopkg.in/check.v1"
"os"
)
type LocalStoreSuite struct{}
var _ = Suite(&LocalStoreSuite{})
// Hook up gocheck into the "go test" runner.
func Test(t *testing.T) { TestingT(t) }
func (LocalStoreSuite) TestFileLocalStore(c *C) {
tmp := c.MkDir()
path := filepath.Join(tmp, "tuf.db")
store, err := FileLocalStore(path)
c.Assert(err, IsNil)
defer store.Close()
type meta map[string]json.RawMessage
assertGet := func(expected meta) {
actual, err := store.GetMeta()
c.Assert(err, IsNil)
c.Assert(meta(actual), DeepEquals, expected)
}
// initial GetMeta should return empty meta
assertGet(meta{})
// SetMeta should persist
rootJSON := []byte(`{"_type":"Root"}`)
c.Assert(store.SetMeta("root.json", rootJSON), IsNil)
assertGet(meta{"root.json": rootJSON})
// SetMeta should add to existing meta
targetsJSON := []byte(`{"_type":"Target"}`)
c.Assert(store.SetMeta("targets.json", targetsJSON), IsNil)
assertGet(meta{"root.json": rootJSON, "targets.json": targetsJSON})
// a new store should get the same meta
c.Assert(store.Close(), IsNil)
store, err = FileLocalStore(path)
c.Assert(err, IsNil)
defer func() {
c.Assert(store.Close(), IsNil)
}()
assertGet(meta{"root.json": rootJSON, "targets.json": targetsJSON})
}
func (LocalStoreSuite) TestDeleteMeta(c *C) {
tmp := c.MkDir()
path := filepath.Join(tmp, "tuf.db")
store, err := FileLocalStore(path)
c.Assert(err, IsNil)
type meta map[string]json.RawMessage
assertGet := func(expected meta) {
actual, err := store.GetMeta()
c.Assert(err, IsNil)
c.Assert(meta(actual), DeepEquals, expected)
}
// initial GetMeta should return empty meta
assertGet(meta{})
// SetMeta should persist
rootJSON := []byte(`{"_type":"Root"}`)
c.Assert(store.SetMeta("root.json", rootJSON), IsNil)
assertGet(meta{"root.json": rootJSON})
store.DeleteMeta("root.json")
m, _ := store.GetMeta()
if _, ok := m["root.json"]; ok {
c.Fatalf("Metadata is not deleted!")
}
}
func (LocalStoreSuite) TestCorruptManifest(c *C) {
tmp := c.MkDir()
path := filepath.Join(tmp, "tuf.db")
store, err := FileLocalStore(path)
c.Assert(err, IsNil)
// now break the manifest file
err = os.Truncate(filepath.Join(path, "MANIFEST-000000"), 1)
c.Assert(err, IsNil)
err = store.Close()
c.Assert(err, IsNil)
store, err = FileLocalStore(path)
c.Assert(err, IsNil)
type meta map[string]json.RawMessage
assertGet := func(expected meta) {
actual, err := store.GetMeta()
c.Assert(err, IsNil)
c.Assert(meta(actual), DeepEquals, expected)
}
// initial GetMeta should return empty meta
assertGet(meta{})
// SetMeta should persist
rootJSON := []byte(`{"_type":"Root"}`)
c.Assert(store.SetMeta("root.json", rootJSON), IsNil)
assertGet(meta{"root.json": rootJSON})
store.DeleteMeta("root.json")
m, _ := store.GetMeta()
if _, ok := m["root.json"]; ok {
c.Fatalf("Metadata is not deleted!")
}
}
|