mirror of https://github.com/portainer/portainer
93 lines
1.8 KiB
Go
93 lines
1.8 KiB
Go
package datastore
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"log"
|
|
"os"
|
|
|
|
portainer "github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/api/database"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/portainer/portainer/api/filesystem"
|
|
)
|
|
|
|
var errTempDir = errors.New("can't create a temp dir")
|
|
|
|
func (store *Store) GetConnection() portainer.Connection {
|
|
return store.connection
|
|
}
|
|
|
|
func MustNewTestStore(init, secure bool) (bool, *Store, func()) {
|
|
newStore, store, teardown, err := NewTestStore(init, secure)
|
|
if err != nil {
|
|
if !errors.Is(err, errTempDir) {
|
|
teardown()
|
|
}
|
|
log.Fatal(err)
|
|
}
|
|
|
|
return newStore, store, teardown
|
|
}
|
|
|
|
func NewTestStore(init, secure bool) (bool, *Store, func(), error) {
|
|
// Creates unique temp directory in a concurrency friendly manner.
|
|
storePath, err := ioutil.TempDir("", "test-store")
|
|
if err != nil {
|
|
return false, nil, nil, errors.Wrap(errTempDir, err.Error())
|
|
}
|
|
|
|
fileService, err := filesystem.NewService(storePath, "")
|
|
if err != nil {
|
|
return false, nil, nil, err
|
|
}
|
|
|
|
secretKey := []byte("apassphrasewhichneedstobe32bytes")
|
|
if !secure {
|
|
secretKey = nil
|
|
}
|
|
|
|
connection, err := database.NewDatabase("boltdb", storePath, secretKey)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
store := NewStore(storePath, fileService, connection)
|
|
newStore, err := store.Open()
|
|
if err != nil {
|
|
return newStore, nil, nil, err
|
|
}
|
|
|
|
if init {
|
|
err = store.Init()
|
|
if err != nil {
|
|
return newStore, nil, nil, err
|
|
}
|
|
}
|
|
|
|
if newStore {
|
|
// from MigrateData
|
|
store.VersionService.StoreDBVersion(portainer.DBVersion)
|
|
if err != nil {
|
|
return newStore, nil, nil, err
|
|
}
|
|
}
|
|
|
|
teardown := func() {
|
|
teardown(store, storePath)
|
|
}
|
|
|
|
return newStore, store, teardown, nil
|
|
}
|
|
|
|
func teardown(store *Store, storePath string) {
|
|
err := store.Close()
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
|
|
err = os.RemoveAll(storePath)
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
}
|