commento/api/config_test.go

157 lines
3.9 KiB
Go
Raw Normal View History

package main
import (
"os"
"path/filepath"
2018-06-11 01:43:42 +08:00
"testing"
)
func TestConfigParseBasics(t *testing.T) {
2018-06-08 01:47:23 +08:00
os.Setenv("COMMENTO_ORIGIN", "https://commento.io")
if err := configParse(); err != nil {
t.Errorf("unexpected error when parsing config: %v", err)
return
}
if os.Getenv("BIND_ADDRESS") != "127.0.0.1" {
t.Errorf("expected COMMENTO_BIND_ADDRESS=127.0.0.1, but COMMENTO_BIND_ADDRESS=%s instead", os.Getenv("BIND_ADDRESS"))
return
}
os.Setenv("COMMENTO_BIND_ADDRESS", "192.168.1.100")
if err := configParse(); err != nil {
t.Errorf("unexpected error when parsing config: %v", err)
return
}
if os.Getenv("BIND_ADDRESS") != "192.168.1.100" {
t.Errorf("expected COMMENTO_BIND_ADDRESS=192.168.1.100, but COMMENTO_BIND_ADDRESS=%s instead", os.Getenv("BIND_ADDRESS"))
return
}
// This test feels kinda stupid, but whatever.
if os.Getenv("PORT") != "8080" {
t.Errorf("expected PORT=8080, but PORT=%s instead", os.Getenv("PORT"))
return
}
2018-06-08 01:47:23 +08:00
os.Setenv("COMMENTO_PORT", "1886")
if err := configParse(); err != nil {
t.Errorf("unexpected error when parsing config: %v", err)
return
}
if os.Getenv("PORT") != "1886" {
t.Errorf("expected PORT=1886, but PORT=%s instead", os.Getenv("PORT"))
return
}
}
func TestConfigParseNoOrigin(t *testing.T) {
2018-06-09 16:33:06 +08:00
os.Setenv("COMMENTO_ORIGIN", "")
if err := configParse(); err == nil {
2018-06-09 16:33:06 +08:00
t.Errorf("expected error not found parsing config without ORIGIN")
return
}
}
func TestConfigParseStatic(t *testing.T) {
os.Setenv("COMMENTO_ORIGIN", "https://commento.io")
if err := configParse(); err != nil {
t.Errorf("unexpected error when parsing config: %v", err)
return
}
binPath, err := filepath.Abs(filepath.Dir(os.Args[0]))
if err != nil {
t.Errorf("cannot load binary path: %v", err)
return
}
if os.Getenv("STATIC") != binPath {
t.Errorf("COMMENTO_STATIC != %s when unset", binPath)
return
}
os.Setenv("COMMENTO_STATIC", "/usr/")
if err := configParse(); err != nil {
t.Errorf("unexpected error when parsing config: %v", err)
return
}
if os.Getenv("STATIC") != "/usr" {
t.Errorf("COMMENTO_STATIC != /usr when unset")
return
}
}
func TestConfigParseStaticDNE(t *testing.T) {
os.Setenv("COMMENTO_ORIGIN", "https://commento.io")
os.Setenv("COMMENTO_STATIC", "/does/not/exist/surely/")
if err := configParse(); err == nil {
t.Errorf("expected error not found when a non-existant directory is used")
return
}
}
func TestConfigParseStaticNotADirectory(t *testing.T) {
os.Setenv("COMMENTO_ORIGIN", "https://commento.io")
os.Setenv("COMMENTO_STATIC", os.Args[0])
if err := configParse(); err != errorNotADirectory {
t.Errorf("expected error not found when a file is used")
return
}
}
func TestConfigOriginTrailingSlash(t *testing.T) {
os.Setenv("COMMENTO_ORIGIN", "https://commento.io/")
os.Setenv("COMMENTO_STATIC", "")
if err := configParse(); err != nil {
t.Errorf("unexpected error when parsing config: %v", err)
return
}
if os.Getenv("ORIGIN") != "https://commento.io" {
t.Errorf("expected ORIGIN=https://commento.io got ORIGIN=%s", os.Getenv("ORIGIN"))
return
}
}
func TestConfigMaxConnections(t *testing.T) {
os.Setenv("COMMENTO_ORIGIN", "https://commento.io")
os.Setenv("COMMENTO_STATIC", "")
os.Setenv("COMMENTO_MAX_IDLE_PG_CONNECTIONS", "100")
if err := configParse(); err != nil {
t.Errorf("unexpected error when MAX_IDLE_PG_CONNECTIONS=100: %v", err)
return
}
os.Setenv("COMMENTO_MAX_IDLE_PG_CONNECTIONS", "text")
if err := configParse(); err == nil {
t.Errorf("expected error with MAX_IDLE_PG_CONNECTIONS=text not found")
return
}
os.Setenv("COMMENTO_MAX_IDLE_PG_CONNECTIONS", "0")
if err := configParse(); err == nil {
t.Errorf("expected error with MAX_IDLE_PG_CONNECTIONS=0 not found")
return
}
os.Setenv("COMMENTO_MAX_IDLE_PG_CONNECTIONS", "-1")
if err := configParse(); err == nil {
t.Errorf("expected error with MAX_IDLE_PG_CONNECTIONS=-1 not found")
return
}
}