mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-10-31 17:11:13 +01:00
24 lines
556 B
Go
24 lines
556 B
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/urfave/cli/v2"
|
|
"heckel.io/ntfy/server"
|
|
)
|
|
|
|
func TestCLI_WebPush_GenerateKeys(t *testing.T) {
|
|
app, _, _, stderr := newTestApp()
|
|
require.Nil(t, runWebPushCommand(app, server.NewConfig(), "keys"))
|
|
require.Contains(t, stderr.String(), "Web Push keys generated.")
|
|
}
|
|
|
|
func runWebPushCommand(app *cli.App, conf *server.Config, args ...string) error {
|
|
webPushArgs := []string{
|
|
"ntfy",
|
|
"--log-level=ERROR",
|
|
"webpush",
|
|
}
|
|
return app.Run(append(webPushArgs, args...))
|
|
}
|