photoprism/internal/config/test_test.go
Michael Mayer a4e2867c86 Split import command into copy and move
Upgraded JS dependencies and did some refactoring along the way...

Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-01-31 15:29:06 +01:00

58 lines
1.0 KiB
Go

package config
import (
"testing"
"github.com/jinzhu/gorm"
"github.com/photoprism/photoprism/pkg/fs"
"github.com/stretchr/testify/assert"
"github.com/urfave/cli"
)
func TestTestCliContext(t *testing.T) {
result := CliTestContext()
assert.IsType(t, new(cli.Context), result)
}
func TestTestConfig(t *testing.T) {
result := TestConfig()
assert.IsType(t, new(Config), result)
}
func TestNewTestParams(t *testing.T) {
c := NewTestParams()
assert.IsType(t, new(Params), c)
assert.Equal(t, fs.Abs("../../assets"), c.AssetsPath)
assert.False(t, c.Debug)
}
func TestNewTestConfig(t *testing.T) {
c := NewTestConfig()
db := c.Db()
assert.IsType(t, &gorm.DB{}, db)
}
func TestNewTestParamsError(t *testing.T) {
c := NewTestParamsError()
assert.IsType(t, new(Params), c)
assert.Equal(t, fs.Abs("../.."), c.AssetsPath)
assert.Equal(t, "../../assets/testdata/cache", c.CachePath)
assert.False(t, c.Debug)
}
func TestNewTestErrorConfig(t *testing.T) {
c := NewTestErrorConfig()
db := c.Db()
assert.IsType(t, &gorm.DB{}, db)
}