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
|
//go:build linux && cgo && !agent
package db_test
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/lxc/incus/v6/internal/server/db"
"github.com/lxc/incus/v6/internal/server/db/query"
)
// Node database objects automatically initialize their schema as needed.
func TestNode_Schema(t *testing.T) {
node, cleanup := db.NewTestNode(t)
defer cleanup()
// The underlying node-level database has exactly one row in the schema
// table.
db := node.DB()
tx, err := db.Begin()
require.NoError(t, err)
n, err := query.Count(context.Background(), tx, "schema", "")
require.NoError(t, err)
assert.Equal(t, 1, n)
assert.NoError(t, tx.Commit())
assert.NoError(t, db.Close())
}
// A gRPC SQL connection is established when starting to interact with the
// cluster database.
func TestCluster_Setup(t *testing.T) {
cluster, cleanup := db.NewTestCluster(t)
defer cleanup()
// The underlying node-level database has exactly one row in the schema
// table.
db := cluster.DB()
tx, err := db.Begin()
require.NoError(t, err)
n, err := query.Count(context.Background(), tx, "schema", "")
require.NoError(t, err)
assert.Equal(t, 1, n)
assert.NoError(t, tx.Commit())
assert.NoError(t, db.Close())
}
|