|
@@ -12,6 +12,9 @@ func TestConfig_Load(t *testing.T) {
|
|
|
filename := filepath.Join(t.TempDir(), "client.yml")
|
|
|
require.Nil(t, os.WriteFile(filename, []byte(`
|
|
|
default-host: http://localhost
|
|
|
+default-user: phil
|
|
|
+default-password: mypass
|
|
|
+default-command: 'echo "Got the message: $message"'
|
|
|
subscribe:
|
|
|
- topic: no-command-with-auth
|
|
|
user: phil
|
|
@@ -22,12 +25,16 @@ subscribe:
|
|
|
command: notify-send -i /usr/share/ntfy/logo.png "Important" "$m"
|
|
|
if:
|
|
|
priority: high,urgent
|
|
|
+ - topic: defaults
|
|
|
`), 0600))
|
|
|
|
|
|
conf, err := client.LoadConfig(filename)
|
|
|
require.Nil(t, err)
|
|
|
require.Equal(t, "http://localhost", conf.DefaultHost)
|
|
|
- require.Equal(t, 3, len(conf.Subscribe))
|
|
|
+ require.Equal(t, "phil", conf.DefaultUser)
|
|
|
+ require.Equal(t, "mypass", conf.DefaultPassword)
|
|
|
+ require.Equal(t, `echo "Got the message: $message"`, conf.DefaultCommand)
|
|
|
+ require.Equal(t, 4, len(conf.Subscribe))
|
|
|
require.Equal(t, "no-command-with-auth", conf.Subscribe[0].Topic)
|
|
|
require.Equal(t, "", conf.Subscribe[0].Command)
|
|
|
require.Equal(t, "phil", conf.Subscribe[0].User)
|
|
@@ -37,4 +44,5 @@ subscribe:
|
|
|
require.Equal(t, "alerts", conf.Subscribe[2].Topic)
|
|
|
require.Equal(t, `notify-send -i /usr/share/ntfy/logo.png "Important" "$m"`, conf.Subscribe[2].Command)
|
|
|
require.Equal(t, "high,urgent", conf.Subscribe[2].If["priority"])
|
|
|
+ require.Equal(t, "defaults", conf.Subscribe[3].Topic)
|
|
|
}
|