package config import ( "os" "strings" "testing" "github.com/photoprism/photoprism/pkg/fs" "github.com/sirupsen/logrus" "github.com/stretchr/testify/assert" ) func TestMain(m *testing.M) { log = logrus.StandardLogger() log.SetLevel(logrus.DebugLevel) c := TestConfig() code := m.Run() _ = c.CloseDb() os.Exit(code) } func TestNewConfig(t *testing.T) { ctx := CliTestContext() assert.True(t, ctx.IsSet("assets-path")) assert.False(t, ctx.Bool("debug")) c := NewConfig(ctx) assert.IsType(t, new(Config), c) assert.Equal(t, fs.Abs("../../assets"), c.AssetsPath()) assert.False(t, c.Debug()) assert.False(t, c.ReadOnly()) } func TestConfig_Name(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) name := c.Name() assert.Equal(t, "config.test", name) } func TestConfig_Version(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) version := c.Version() assert.Equal(t, "test", version) } func TestConfig_TensorFlowVersion(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) version := c.TensorFlowVersion() assert.IsType(t, "1.15.0", version) } func TestConfig_TensorFlowDisabled(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) version := c.TensorFlowOff() assert.Equal(t, false, version) } func TestConfig_Copyright(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) copyright := c.Copyright() assert.Equal(t, "", copyright) } func TestConfig_ConfigFile(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) assert.Contains(t, c.ConfigFile(), "/storage/testdata/settings/photoprism.yml") } func TestConfig_SettingsPath(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) assert.Contains(t, c.SettingsPath(), "/storage/testdata/settings") } func TestConfig_PIDFilename(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) assert.Contains(t, c.PIDFilename(), "/storage/testdata/photoprism.pid") } func TestConfig_LogFilename(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) assert.Contains(t, c.LogFilename(), "/storage/testdata/photoprism.log") } func TestConfig_DetachServer(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) detachServer := c.DetachServer() assert.Equal(t, false, detachServer) } func TestConfig_HttpServerHost(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) host := c.HttpServerHost() assert.Equal(t, "0.0.0.0", host) } func TestConfig_HttpServerPort(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) port := c.HttpServerPort() assert.Equal(t, 2342, port) } func TestConfig_HttpServerMode(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) mode := c.HttpServerMode() assert.Equal(t, "release", mode) } func TestConfig_HttpServerPassword(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) password := c.HttpServerPassword() assert.Equal(t, "", password) } func TestConfig_OriginalsPath(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) result := c.OriginalsPath() assert.True(t, strings.HasPrefix(result, "/")) assert.True(t, strings.HasSuffix(result, "/storage/testdata/originals")) } func TestConfig_ImportPath(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) result := c.ImportPath() assert.True(t, strings.HasPrefix(result, "/")) assert.True(t, strings.HasSuffix(result, "/storage/testdata/import")) } func TestConfig_SipsBin(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) bin := c.SipsBin() assert.Equal(t, "", bin) } func TestConfig_DarktableBin(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) bin := c.DarktableBin() assert.Equal(t, "/usr/bin/darktable-cli", bin) } func TestConfig_HeifConvertBin(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) bin := c.HeifConvertBin() assert.Equal(t, "/usr/bin/heif-convert", bin) } func TestConfig_ExifToolBin(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) bin := c.ExifToolBin() assert.Equal(t, "/usr/bin/exiftool", bin) } func TestConfig_DatabaseDriver(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) driver := c.DatabaseDriver() assert.Equal(t, SQLite, driver) } func TestConfig_DatabaseDsn(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) dsn := c.DatabaseDriver() assert.Equal(t, SQLite, dsn) } func TestConfig_CachePath(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) assert.True(t, strings.HasSuffix(c.CachePath(), "storage/testdata/cache")) } func TestConfig_ThumbnailsPath(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) assert.True(t, strings.HasPrefix(c.ThumbPath(), "/")) assert.True(t, strings.HasSuffix(c.ThumbPath(), "storage/testdata/cache/thumbnails")) } func TestConfig_AssetsPath(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) assert.True(t, strings.HasSuffix(c.AssetsPath(), "/assets")) } func TestConfig_DetectNSFW(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) result := c.DetectNSFW() assert.Equal(t, true, result) } func TestConfig_AdminPassword(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) result := c.AdminPassword() assert.Equal(t, "photoprism", result) } func TestConfig_NSFWModelPath(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) assert.Contains(t, c.NSFWModelPath(), "/assets/nsfw") } func TestConfig_ExamplesPath(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) path := c.ExamplesPath() assert.Equal(t, "/go/src/github.com/photoprism/photoprism/assets/examples", path) } func TestConfig_TensorFlowModelPath(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) path := c.TensorFlowModelPath() assert.Equal(t, "/go/src/github.com/photoprism/photoprism/assets/nasnet", path) } func TestConfig_TemplatesPath(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) path := c.TemplatesPath() assert.Equal(t, "/go/src/github.com/photoprism/photoprism/assets/templates", path) } func TestConfig_StaticPath(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) path := c.StaticPath() assert.Equal(t, "/go/src/github.com/photoprism/photoprism/assets/static", path) } func TestConfig_BuildPath(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) path := c.BuildPath() assert.Equal(t, "/go/src/github.com/photoprism/photoprism/assets/static/build", path) } func TestConfig_ImgPath(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) path := c.ImgPath() assert.Equal(t, "/go/src/github.com/photoprism/photoprism/assets/static/img", path) } func TestConfig_ClientConfig(t *testing.T) { c := TestConfig() cc := c.UserConfig() assert.IsType(t, ClientConfig{}, cc) assert.NotEmpty(t, cc.Name) assert.NotEmpty(t, cc.Version) assert.NotEmpty(t, cc.Copyright) assert.NotEmpty(t, cc.Thumbnails) assert.NotEmpty(t, cc.JSHash) assert.NotEmpty(t, cc.CSSHash) assert.Equal(t, true, cc.Debug) assert.Equal(t, false, cc.ReadOnly) } func TestConfig_Workers(t *testing.T) { ctx := CliTestContext() c := NewConfig(ctx) assert.GreaterOrEqual(t, c.Workers(), 1) }