a4e2867c86
Upgraded JS dependencies and did some refactoring along the way... Signed-off-by: Michael Mayer <michael@liquidbytes.net>
57 lines
1 KiB
Go
57 lines
1 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)
|
|
}
|