|
@ -23,6 +23,9 @@ func Test_parseConfig(t *testing.T) { |
|
|
if cfg.SmtpPort != 587 { |
|
|
if cfg.SmtpPort != 587 { |
|
|
t.Error("SMTP Port not 587") |
|
|
t.Error("SMTP Port not 587") |
|
|
} |
|
|
} |
|
|
|
|
|
if len(cfg.Blacklist) != 2 || cfg.Blacklist[0] != "gambling" || cfg.Blacklist[1] != "casino" { |
|
|
|
|
|
t.Error("Default Blacklist is wrong") |
|
|
|
|
|
} |
|
|
}) |
|
|
}) |
|
|
t.Run("Correct config parsing", func(t *testing.T) { |
|
|
t.Run("Correct config parsing", func(t *testing.T) { |
|
|
os.Clearenv() |
|
|
os.Clearenv() |
|
@ -36,6 +39,7 @@ func Test_parseConfig(t *testing.T) { |
|
|
_ = os.Setenv("SMTP_HOST", "smtp.example.com") |
|
|
_ = os.Setenv("SMTP_HOST", "smtp.example.com") |
|
|
_ = os.Setenv("SMTP_PORT", "100") |
|
|
_ = os.Setenv("SMTP_PORT", "100") |
|
|
_ = os.Setenv("GOOGLE_API_KEY", "abc") |
|
|
_ = os.Setenv("GOOGLE_API_KEY", "abc") |
|
|
|
|
|
_ = os.Setenv("BLACKLIST", "test,abc") |
|
|
cfg, err := parseConfig() |
|
|
cfg, err := parseConfig() |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
t.Error() |
|
|
t.Error() |
|
@ -71,6 +75,9 @@ func Test_parseConfig(t *testing.T) { |
|
|
if !reflect.DeepEqual(cfg.GoogleApiKey, "abc") { |
|
|
if !reflect.DeepEqual(cfg.GoogleApiKey, "abc") { |
|
|
t.Error("Google API Key is wrong") |
|
|
t.Error("Google API Key is wrong") |
|
|
} |
|
|
} |
|
|
|
|
|
if !reflect.DeepEqual(cfg.Blacklist, []string{"test", "abc"}) { |
|
|
|
|
|
t.Error("Blacklist is wrong") |
|
|
|
|
|
} |
|
|
}) |
|
|
}) |
|
|
t.Run("Error when wrong config", func(t *testing.T) { |
|
|
t.Run("Error when wrong config", func(t *testing.T) { |
|
|
os.Clearenv() |
|
|
os.Clearenv() |
|
|