mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 09:31:18 +01:00
145 lines
4.5 KiB
Go
145 lines
4.5 KiB
Go
package cmd
|
|
|
|
import (
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/urfave/cli/v2"
|
|
"heckel.io/ntfy/server"
|
|
"heckel.io/ntfy/test"
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
func TestCLI_User_Add(t *testing.T) {
|
|
s, conf, port := newTestServerWithAuth(t)
|
|
defer test.StopServer(t, s, port)
|
|
|
|
app, stdin, _, stderr := newTestApp()
|
|
stdin.WriteString("mypass\nmypass")
|
|
require.Nil(t, runUserCommand(app, conf, "add", "phil"))
|
|
require.Contains(t, stderr.String(), "user phil added with role user")
|
|
}
|
|
|
|
func TestCLI_User_Add_Exists(t *testing.T) {
|
|
s, conf, port := newTestServerWithAuth(t)
|
|
defer test.StopServer(t, s, port)
|
|
|
|
app, stdin, _, stderr := newTestApp()
|
|
stdin.WriteString("mypass\nmypass")
|
|
require.Nil(t, runUserCommand(app, conf, "add", "phil"))
|
|
require.Contains(t, stderr.String(), "user phil added with role user")
|
|
|
|
app, stdin, _, _ = newTestApp()
|
|
stdin.WriteString("mypass\nmypass")
|
|
err := runUserCommand(app, conf, "add", "phil")
|
|
require.Error(t, err)
|
|
require.Contains(t, err.Error(), "user phil already exists")
|
|
}
|
|
|
|
func TestCLI_User_Add_Admin(t *testing.T) {
|
|
s, conf, port := newTestServerWithAuth(t)
|
|
defer test.StopServer(t, s, port)
|
|
|
|
app, stdin, _, stderr := newTestApp()
|
|
stdin.WriteString("mypass\nmypass")
|
|
require.Nil(t, runUserCommand(app, conf, "add", "--role=admin", "phil"))
|
|
require.Contains(t, stderr.String(), "user phil added with role admin")
|
|
}
|
|
|
|
func TestCLI_User_Add_Password_Mismatch(t *testing.T) {
|
|
s, conf, port := newTestServerWithAuth(t)
|
|
defer test.StopServer(t, s, port)
|
|
|
|
app, stdin, _, _ := newTestApp()
|
|
stdin.WriteString("mypass\nNOTMATCH")
|
|
err := runUserCommand(app, conf, "add", "phil")
|
|
require.Error(t, err)
|
|
require.Contains(t, err.Error(), "passwords do not match: try it again, but this time type slooowwwlly")
|
|
}
|
|
|
|
func TestCLI_User_ChangePass(t *testing.T) {
|
|
s, conf, port := newTestServerWithAuth(t)
|
|
defer test.StopServer(t, s, port)
|
|
|
|
// Add user
|
|
app, stdin, _, stderr := newTestApp()
|
|
stdin.WriteString("mypass\nmypass")
|
|
require.Nil(t, runUserCommand(app, conf, "add", "phil"))
|
|
require.Contains(t, stderr.String(), "user phil added with role user")
|
|
|
|
// Change pass
|
|
app, stdin, _, stderr = newTestApp()
|
|
stdin.WriteString("newpass\nnewpass")
|
|
require.Nil(t, runUserCommand(app, conf, "change-pass", "phil"))
|
|
require.Contains(t, stderr.String(), "changed password for user phil")
|
|
}
|
|
|
|
func TestCLI_User_ChangeRole(t *testing.T) {
|
|
s, conf, port := newTestServerWithAuth(t)
|
|
defer test.StopServer(t, s, port)
|
|
|
|
// Add user
|
|
app, stdin, _, stderr := newTestApp()
|
|
stdin.WriteString("mypass\nmypass")
|
|
require.Nil(t, runUserCommand(app, conf, "add", "phil"))
|
|
require.Contains(t, stderr.String(), "user phil added with role user")
|
|
|
|
// Change role
|
|
app, _, _, stderr = newTestApp()
|
|
require.Nil(t, runUserCommand(app, conf, "change-role", "phil", "admin"))
|
|
require.Contains(t, stderr.String(), "changed role for user phil to admin")
|
|
}
|
|
|
|
func TestCLI_User_Delete(t *testing.T) {
|
|
s, conf, port := newTestServerWithAuth(t)
|
|
defer test.StopServer(t, s, port)
|
|
|
|
// Add user
|
|
app, stdin, _, stderr := newTestApp()
|
|
stdin.WriteString("mypass\nmypass")
|
|
require.Nil(t, runUserCommand(app, conf, "add", "phil"))
|
|
require.Contains(t, stderr.String(), "user phil added with role user")
|
|
|
|
// Delete user
|
|
app, _, _, stderr = newTestApp()
|
|
require.Nil(t, runUserCommand(app, conf, "del", "phil"))
|
|
require.Contains(t, stderr.String(), "user phil removed")
|
|
|
|
// Delete user again (does not exist)
|
|
app, _, _, _ = newTestApp()
|
|
err := runUserCommand(app, conf, "del", "phil")
|
|
require.Error(t, err)
|
|
require.Contains(t, err.Error(), "user phil does not exist")
|
|
}
|
|
|
|
func newTestServerWithAuth(t *testing.T) (s *server.Server, conf *server.Config, port int) {
|
|
conf = server.NewConfig()
|
|
conf.AuthFile = filepath.Join(t.TempDir(), "user.db")
|
|
conf.AuthDefaultRead = false
|
|
conf.AuthDefaultWrite = false
|
|
s, port = test.StartServerWithConfig(t, conf)
|
|
return
|
|
}
|
|
|
|
func runUserCommand(app *cli.App, conf *server.Config, args ...string) error {
|
|
userArgs := []string{
|
|
"ntfy",
|
|
"user",
|
|
"--auth-file=" + conf.AuthFile,
|
|
"--auth-default-access=" + confToDefaultAccess(conf),
|
|
}
|
|
return app.Run(append(userArgs, args...))
|
|
}
|
|
|
|
func confToDefaultAccess(conf *server.Config) string {
|
|
var defaultAccess string
|
|
if conf.AuthDefaultRead && conf.AuthDefaultWrite {
|
|
defaultAccess = "read-write"
|
|
} else if conf.AuthDefaultRead && !conf.AuthDefaultWrite {
|
|
defaultAccess = "read-only"
|
|
} else if !conf.AuthDefaultRead && conf.AuthDefaultWrite {
|
|
defaultAccess = "write-only"
|
|
} else if !conf.AuthDefaultRead && !conf.AuthDefaultWrite {
|
|
defaultAccess = "deny-all"
|
|
}
|
|
return defaultAccess
|
|
}
|