photoprism/internal/config/config_tls_test.go
Michael Mayer 3b9890e345 Config: Update options report, parameter names and tests
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-10-25 06:19:56 +02:00

57 lines
1.2 KiB
Go

package config
import (
"strings"
"testing"
"github.com/stretchr/testify/assert"
)
func TestConfig_CertificatesPath(t *testing.T) {
c := NewConfig(CliTestContext())
if dir := c.CertificatesPath(); dir == "" {
t.Fatal("certificates path is empty")
} else if !strings.HasPrefix(dir, c.ConfigPath()) {
t.Fatalf("unexpected certificates path: %s", dir)
}
}
func TestConfig_TLSEmail(t *testing.T) {
c := NewConfig(CliTestContext())
assert.Equal(t, "", c.TLSEmail())
c.options.TLSEmail = "hello@example.com"
assert.Equal(t, "hello@example.com", c.TLSEmail())
c.options.TLSEmail = "hello"
assert.Equal(t, "", c.TLSEmail())
c.options.TLSEmail = ""
assert.Equal(t, "", c.TLSEmail())
}
func TestConfig_TLSCert(t *testing.T) {
c := NewConfig(CliTestContext())
assert.True(t, strings.HasSuffix(c.TLSCert(), "photoprism.me.crt"))
}
func TestConfig_TLSKey(t *testing.T) {
c := NewConfig(CliTestContext())
assert.True(t, strings.HasSuffix(c.TLSKey(), "photoprism.me.key"))
}
func TestConfig_TLS(t *testing.T) {
c := NewConfig(CliTestContext())
cert, key := c.TLS()
assert.Equal(t, "", cert)
assert.Equal(t, "", key)
}
func TestConfig_DisableTLS(t *testing.T) {
c := NewConfig(CliTestContext())
assert.True(t, c.DisableTLS())
}