lbcwallet/walletdb/bdb/interface_test.go

37 lines
1.1 KiB
Go
Raw Normal View History

// Copyright (c) 2014 The btcsuite developers
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
// This file intended to be copied into each backend driver directory. Each
// driver should have their own driver_test.go file which creates a database and
// invokes the testInterface function in this file to ensure the driver properly
// implements the interface. See the bdb backend driver for a working example.
//
// NOTE: When copying this file into the backend driver folder, the package name
// will need to be changed accordingly.
package bdb_test
import (
"io/ioutil"
"os"
"path/filepath"
"testing"
"github.com/lbryio/lbcwallet/walletdb/walletdbtest"
)
// TestInterface performs all interfaces tests for this database driver.
func TestInterface(t *testing.T) {
tempDir, err := ioutil.TempDir("", "interfacetest")
if err != nil {
t.Errorf("unable to create temp dir: %v", err)
return
}
defer os.Remove(tempDir)
dbPath := filepath.Join(tempDir, "db")
defer os.RemoveAll(dbPath)
2020-08-11 14:15:46 +02:00
walletdbtest.TestInterface(t, dbType, dbPath, true, defaultDBTimeout)
}