2021-12-22 14:17:50 +01:00
|
|
|
package client_test
|
2021-12-22 13:46:17 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/stretchr/testify/require"
|
2021-12-22 14:17:50 +01:00
|
|
|
"heckel.io/ntfy/client"
|
2021-12-22 13:46:17 +01:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestConfig_Load(t *testing.T) {
|
|
|
|
filename := filepath.Join(t.TempDir(), "client.yml")
|
|
|
|
require.Nil(t, os.WriteFile(filename, []byte(`
|
|
|
|
default-host: http://localhost
|
2022-07-31 21:12:15 +02:00
|
|
|
default-user: phil
|
|
|
|
default-password: mypass
|
|
|
|
default-command: 'echo "Got the message: $message"'
|
2021-12-22 13:46:17 +01:00
|
|
|
subscribe:
|
2022-02-17 19:16:01 +01:00
|
|
|
- topic: no-command-with-auth
|
|
|
|
user: phil
|
|
|
|
password: mypass
|
2021-12-22 13:46:17 +01:00
|
|
|
- topic: echo-this
|
|
|
|
command: 'echo "Message received: $message"'
|
|
|
|
- topic: alerts
|
|
|
|
command: notify-send -i /usr/share/ntfy/logo.png "Important" "$m"
|
|
|
|
if:
|
|
|
|
priority: high,urgent
|
2022-07-31 21:12:15 +02:00
|
|
|
- topic: defaults
|
2021-12-22 13:46:17 +01:00
|
|
|
`), 0600))
|
|
|
|
|
2021-12-22 14:17:50 +01:00
|
|
|
conf, err := client.LoadConfig(filename)
|
2021-12-22 13:46:17 +01:00
|
|
|
require.Nil(t, err)
|
|
|
|
require.Equal(t, "http://localhost", conf.DefaultHost)
|
2022-07-31 21:12:15 +02:00
|
|
|
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))
|
2022-02-17 19:16:01 +01:00
|
|
|
require.Equal(t, "no-command-with-auth", conf.Subscribe[0].Topic)
|
2021-12-22 13:46:17 +01:00
|
|
|
require.Equal(t, "", conf.Subscribe[0].Command)
|
2022-02-17 19:16:01 +01:00
|
|
|
require.Equal(t, "phil", conf.Subscribe[0].User)
|
|
|
|
require.Equal(t, "mypass", conf.Subscribe[0].Password)
|
2021-12-22 13:46:17 +01:00
|
|
|
require.Equal(t, "echo-this", conf.Subscribe[1].Topic)
|
|
|
|
require.Equal(t, `echo "Message received: $message"`, conf.Subscribe[1].Command)
|
|
|
|
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"])
|
2022-07-31 21:12:15 +02:00
|
|
|
require.Equal(t, "defaults", conf.Subscribe[3].Topic)
|
2021-12-22 13:46:17 +01:00
|
|
|
}
|