mirror of
https://github.com/project-zot/zot.git
synced 2024-12-23 22:27:35 -05:00
65 lines
1.6 KiB
Go
65 lines
1.6 KiB
Go
|
package cache_test
|
||
|
|
||
|
import (
|
||
|
"path"
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
|
||
|
"zotregistry.io/zot/errors"
|
||
|
"zotregistry.io/zot/pkg/log"
|
||
|
"zotregistry.io/zot/pkg/storage"
|
||
|
"zotregistry.io/zot/pkg/storage/cache"
|
||
|
)
|
||
|
|
||
|
func TestBoltDBCache(t *testing.T) {
|
||
|
Convey("Make a new cache", t, func() {
|
||
|
dir := t.TempDir()
|
||
|
|
||
|
log := log.NewLogger("debug", "")
|
||
|
So(log, ShouldNotBeNil)
|
||
|
|
||
|
So(func() { _, _ = storage.Create("boltdb", "failTypeAssertion", log) }, ShouldPanic)
|
||
|
|
||
|
cacheDriver, _ := storage.Create("boltdb", cache.BoltDBDriverParameters{"/deadBEEF", "cache_test", true}, log)
|
||
|
So(cacheDriver, ShouldBeNil)
|
||
|
|
||
|
cacheDriver, _ = storage.Create("boltdb", cache.BoltDBDriverParameters{dir, "cache_test", true}, log)
|
||
|
So(cacheDriver, ShouldNotBeNil)
|
||
|
|
||
|
name := cacheDriver.Name()
|
||
|
So(name, ShouldEqual, "boltdb")
|
||
|
|
||
|
val, err := cacheDriver.GetBlob("key")
|
||
|
So(err, ShouldEqual, errors.ErrCacheMiss)
|
||
|
So(val, ShouldBeEmpty)
|
||
|
|
||
|
exists := cacheDriver.HasBlob("key", "value")
|
||
|
So(exists, ShouldBeFalse)
|
||
|
|
||
|
err = cacheDriver.PutBlob("key", path.Join(dir, "value"))
|
||
|
So(err, ShouldBeNil)
|
||
|
|
||
|
err = cacheDriver.PutBlob("key", "value")
|
||
|
So(err, ShouldNotBeNil)
|
||
|
|
||
|
exists = cacheDriver.HasBlob("key", "value")
|
||
|
So(exists, ShouldBeTrue)
|
||
|
|
||
|
val, err = cacheDriver.GetBlob("key")
|
||
|
So(err, ShouldBeNil)
|
||
|
So(val, ShouldNotBeEmpty)
|
||
|
|
||
|
err = cacheDriver.DeleteBlob("bogusKey", "bogusValue")
|
||
|
So(err, ShouldEqual, errors.ErrCacheMiss)
|
||
|
|
||
|
err = cacheDriver.DeleteBlob("key", "bogusValue")
|
||
|
So(err, ShouldBeNil)
|
||
|
|
||
|
// try to insert empty path
|
||
|
err = cacheDriver.PutBlob("key", "")
|
||
|
So(err, ShouldNotBeNil)
|
||
|
So(err, ShouldEqual, errors.ErrEmptyValue)
|
||
|
})
|
||
|
}
|