2019-05-06 23:18:10 +02:00
|
|
|
package config
|
2019-05-03 18:57:28 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/jinzhu/gorm"
|
2020-01-12 14:00:56 +01:00
|
|
|
"github.com/photoprism/photoprism/pkg/fs"
|
2019-05-03 18:57:28 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
2020-07-13 18:48:56 +02:00
|
|
|
func TestConfig_TestdataPath2(t *testing.T) {
|
|
|
|
assert.Equal(t, "/xxx/testdata", testDataPath("/xxx"))
|
|
|
|
}
|
|
|
|
|
2019-05-03 18:57:28 +02:00
|
|
|
func TestTestCliContext(t *testing.T) {
|
|
|
|
result := CliTestContext()
|
|
|
|
|
|
|
|
assert.IsType(t, new(cli.Context), result)
|
|
|
|
}
|
|
|
|
|
2019-05-06 23:18:10 +02:00
|
|
|
func TestTestConfig(t *testing.T) {
|
2020-04-30 15:41:47 +02:00
|
|
|
c := TestConfig()
|
2019-05-03 18:57:28 +02:00
|
|
|
|
2020-04-30 15:41:47 +02:00
|
|
|
assert.IsType(t, new(Config), c)
|
|
|
|
assert.IsType(t, &gorm.DB{}, c.Db())
|
2019-05-03 18:57:28 +02:00
|
|
|
}
|
|
|
|
|
2020-12-18 20:42:12 +01:00
|
|
|
func TestNewTestOptions(t *testing.T) {
|
|
|
|
c := NewTestOptions()
|
2019-05-03 18:57:28 +02:00
|
|
|
|
2020-12-18 20:42:12 +01:00
|
|
|
assert.IsType(t, new(Options), c)
|
2019-05-03 18:57:28 +02:00
|
|
|
|
2020-01-31 15:29:06 +01:00
|
|
|
assert.Equal(t, fs.Abs("../../assets"), c.AssetsPath)
|
2020-04-30 15:41:47 +02:00
|
|
|
assert.True(t, c.Debug)
|
2019-05-03 18:57:28 +02:00
|
|
|
}
|
2019-12-22 19:21:47 +01:00
|
|
|
|
2020-12-18 20:42:12 +01:00
|
|
|
func TestNewTestOptionsError(t *testing.T) {
|
|
|
|
c := NewTestOptionsError()
|
2019-12-22 19:21:47 +01:00
|
|
|
|
2020-12-18 20:42:12 +01:00
|
|
|
assert.IsType(t, new(Options), c)
|
2019-12-22 19:21:47 +01:00
|
|
|
|
2020-01-31 15:29:06 +01:00
|
|
|
assert.Equal(t, fs.Abs("../.."), c.AssetsPath)
|
2020-05-31 02:09:52 +02:00
|
|
|
assert.Equal(t, fs.Abs("../../storage/testdata/cache"), c.CachePath)
|
2019-12-22 19:21:47 +01:00
|
|
|
assert.False(t, c.Debug)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNewTestErrorConfig(t *testing.T) {
|
|
|
|
c := NewTestErrorConfig()
|
|
|
|
|
2020-10-09 11:35:05 +02:00
|
|
|
if err := c.connectDb(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2019-12-22 19:21:47 +01:00
|
|
|
db := c.Db()
|
|
|
|
|
|
|
|
assert.IsType(t, &gorm.DB{}, db)
|
|
|
|
}
|