mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
36 lines
793 B
Go
36 lines
793 B
Go
package db
|
|
|
|
import (
|
|
"database/sql"
|
|
"testing"
|
|
|
|
"github.com/navidrome/navidrome/log"
|
|
"github.com/navidrome/navidrome/tests"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestDB(t *testing.T) {
|
|
tests.Init(t, false)
|
|
log.SetLevel(log.LevelCritical)
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "DB Suite")
|
|
}
|
|
|
|
var _ = Describe("isSchemaEmpty", func() {
|
|
var db *sql.DB
|
|
BeforeEach(func() {
|
|
path := "file::memory:"
|
|
db, _ = sql.Open(Driver, path)
|
|
})
|
|
|
|
It("returns false if the goose metadata table is found", func() {
|
|
_, err := db.Exec("create table goose_db_version (id primary key);")
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(isSchemaEmpty(db)).To(BeFalse())
|
|
})
|
|
|
|
It("returns true if the schema is brand new", func() {
|
|
Expect(isSchemaEmpty(db)).To(BeTrue())
|
|
})
|
|
})
|