25154720bd
* identity: remove redis and bolt dependencies * identity: move revDB creation to main files
58 lines
1.4 KiB
Go
58 lines
1.4 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package testrevocation
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/alicebob/miniredis"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"storj.io/storj/internal/testcontext"
|
|
"storj.io/storj/pkg/peertls/extensions"
|
|
"storj.io/storj/pkg/revocation"
|
|
"storj.io/storj/storage"
|
|
)
|
|
|
|
// RevocationDBsTest runs the passed test function with each type of revocation database.
|
|
func RevocationDBsTest(t *testing.T, test func(*testing.T, extensions.RevocationDB, storage.KeyValueStore)) {
|
|
|
|
t.Run("Redis-backed revocation DB", func(t *testing.T) {
|
|
ctx := testcontext.New(t)
|
|
defer ctx.Cleanup()
|
|
|
|
redisServer, err := miniredis.Run()
|
|
require.NoError(t, err)
|
|
defer redisServer.Close()
|
|
|
|
{
|
|
// Test using redis-backed revocation DB
|
|
dbURL := "redis://" + redisServer.Addr() + "?db=0"
|
|
redisRevDB, err := revocation.NewDB(dbURL)
|
|
require.NoError(t, err)
|
|
defer ctx.Check(redisRevDB.Close)
|
|
|
|
test(t, redisRevDB, redisRevDB.KVStore)
|
|
}
|
|
|
|
})
|
|
|
|
t.Run("Bolt-backed revocation DB", func(t *testing.T) {
|
|
{
|
|
ctx := testcontext.New(t)
|
|
defer ctx.Cleanup()
|
|
|
|
// Test using bolt-backed revocation DB
|
|
revocationDBPath := ctx.File("revocations.db")
|
|
|
|
dbURL := "bolt://" + revocationDBPath
|
|
boltRevDB, err := revocation.NewDB(dbURL)
|
|
require.NoError(t, err)
|
|
defer ctx.Check(boltRevDB.Close)
|
|
|
|
test(t, boltRevDB, boltRevDB.KVStore)
|
|
}
|
|
})
|
|
}
|