photoprism/internal/config/server_test.go
Michael Mayer 7940786ce9 UX: Refactor config options to be more intuitive
Make sure to update your local config files when upgrading as
the name of some config values has changed. The default
config path has changed from "settings" to "config".
2020-12-18 09:11:42 +01:00

46 lines
1.0 KiB
Go

package config
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestConfig_HttpServerHost2(t *testing.T) {
c := NewConfig(CliTestContext())
assert.Equal(t, "0.0.0.0", c.HttpHost())
c.params.HttpHost = "test"
assert.Equal(t, "test", c.HttpHost())
}
func TestConfig_HttpServerPort2(t *testing.T) {
c := NewConfig(CliTestContext())
assert.Equal(t, int(2342), c.HttpPort())
c.params.HttpPort = int(1234)
assert.Equal(t, int(1234), c.HttpPort())
}
func TestConfig_HttpServerMode2(t *testing.T) {
c := NewConfig(CliTestContext())
assert.Equal(t, "release", c.HttpMode())
c.params.Debug = true
assert.Equal(t, "debug", c.HttpMode())
c.params.HttpMode = "test"
assert.Equal(t, "test", c.HttpMode())
}
func TestConfig_TemplateName(t *testing.T) {
c := NewConfig(CliTestContext())
c.initSettings()
assert.Equal(t, "index.tmpl", c.TemplateName())
c.settings.Templates.Default = "rainbow.tmpl"
assert.Equal(t, "rainbow.tmpl", c.TemplateName())
c.settings.Templates.Default = "xxx"
assert.Equal(t, "index.tmpl", c.TemplateName())
}