113 lines
2.6 KiB
Go
113 lines
2.6 KiB
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
func TestParseConfigBasics(t *testing.T) {
|
|
os.Setenv("COMMENTO_ORIGIN", "https://commento.io")
|
|
|
|
if err := parseConfig(); 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 := parseConfig(); 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
|
|
}
|
|
|
|
os.Setenv("COMMENTO_PORT", "1886")
|
|
|
|
if err := parseConfig(); 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 TestParseConfigNoOrigin(t *testing.T) {
|
|
os.Setenv("COMMENTO_ORIGIN", "")
|
|
|
|
if err := parseConfig(); err == nil {
|
|
t.Errorf("expected error not found parsing config without ORIGIN")
|
|
return
|
|
}
|
|
}
|
|
|
|
func TestParseConfigStatic(t *testing.T) {
|
|
os.Setenv("COMMENTO_ORIGIN", "https://commento.io")
|
|
|
|
if err := parseConfig(); 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 := parseConfig(); 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 TestParseConfigStaticDNE(t *testing.T) {
|
|
os.Setenv("COMMENTO_ORIGIN", "https://commento.io")
|
|
os.Setenv("COMMENTO_STATIC", "/does/not/exist/surely/")
|
|
|
|
if err := parseConfig(); err == nil {
|
|
t.Errorf("expected error not found when a non-existant directory is used")
|
|
return
|
|
}
|
|
}
|
|
|
|
func TestParseConfigStaticNotADirectory(t *testing.T) {
|
|
os.Setenv("COMMENTO_ORIGIN", "https://commento.io")
|
|
os.Setenv("COMMENTO_STATIC", os.Args[0])
|
|
|
|
if err := parseConfig(); err != errorNotADirectory {
|
|
t.Errorf("expected error not found when a file is used")
|
|
return
|
|
}
|
|
}
|