227 lines
6.3 KiB
Go
227 lines
6.3 KiB
Go
package common
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"runtime"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/drakkan/sftpgo/dataprovider"
|
|
"github.com/drakkan/sftpgo/vfs"
|
|
)
|
|
|
|
func TestNewActionNotification(t *testing.T) {
|
|
user := &dataprovider.User{
|
|
Username: "username",
|
|
}
|
|
user.FsConfig.Provider = vfs.LocalFilesystemProvider
|
|
user.FsConfig.S3Config = vfs.S3FsConfig{
|
|
Bucket: "s3bucket",
|
|
Endpoint: "endpoint",
|
|
}
|
|
user.FsConfig.GCSConfig = vfs.GCSFsConfig{
|
|
Bucket: "gcsbucket",
|
|
}
|
|
user.FsConfig.AzBlobConfig = vfs.AzBlobFsConfig{
|
|
Container: "azcontainer",
|
|
Endpoint: "azendpoint",
|
|
}
|
|
user.FsConfig.SFTPConfig = vfs.SFTPFsConfig{
|
|
Endpoint: "sftpendpoint",
|
|
}
|
|
a := newActionNotification(user, operationDownload, "path", "vpath", "target", "", ProtocolSFTP, 123, 0, errors.New("fake error"))
|
|
assert.Equal(t, user.Username, a.Username)
|
|
assert.Equal(t, 0, len(a.Bucket))
|
|
assert.Equal(t, 0, len(a.Endpoint))
|
|
assert.Equal(t, 0, a.Status)
|
|
|
|
user.FsConfig.Provider = vfs.S3FilesystemProvider
|
|
a = newActionNotification(user, operationDownload, "path", "vpath", "target", "", ProtocolSSH, 123, 0, nil)
|
|
assert.Equal(t, "s3bucket", a.Bucket)
|
|
assert.Equal(t, "endpoint", a.Endpoint)
|
|
assert.Equal(t, 1, a.Status)
|
|
|
|
user.FsConfig.Provider = vfs.GCSFilesystemProvider
|
|
a = newActionNotification(user, operationDownload, "path", "vpath", "target", "", ProtocolSCP, 123, 0, ErrQuotaExceeded)
|
|
assert.Equal(t, "gcsbucket", a.Bucket)
|
|
assert.Equal(t, 0, len(a.Endpoint))
|
|
assert.Equal(t, 2, a.Status)
|
|
|
|
user.FsConfig.Provider = vfs.AzureBlobFilesystemProvider
|
|
a = newActionNotification(user, operationDownload, "path", "vpath", "target", "", ProtocolSCP, 123, 0, nil)
|
|
assert.Equal(t, "azcontainer", a.Bucket)
|
|
assert.Equal(t, "azendpoint", a.Endpoint)
|
|
assert.Equal(t, 1, a.Status)
|
|
|
|
a = newActionNotification(user, operationDownload, "path", "vpath", "target", "", ProtocolSCP, 123, os.O_APPEND, nil)
|
|
assert.Equal(t, "azcontainer", a.Bucket)
|
|
assert.Equal(t, "azendpoint", a.Endpoint)
|
|
assert.Equal(t, 1, a.Status)
|
|
assert.Equal(t, os.O_APPEND, a.OpenFlags)
|
|
|
|
user.FsConfig.Provider = vfs.SFTPFilesystemProvider
|
|
a = newActionNotification(user, operationDownload, "path", "vpath", "target", "", ProtocolSFTP, 123, 0, nil)
|
|
assert.Equal(t, "sftpendpoint", a.Endpoint)
|
|
}
|
|
|
|
func TestActionHTTP(t *testing.T) {
|
|
actionsCopy := Config.Actions
|
|
|
|
Config.Actions = ProtocolActions{
|
|
ExecuteOn: []string{operationDownload},
|
|
Hook: fmt.Sprintf("http://%v", httpAddr),
|
|
}
|
|
user := &dataprovider.User{
|
|
Username: "username",
|
|
}
|
|
a := newActionNotification(user, operationDownload, "path", "vpath", "target", "", ProtocolSFTP, 123, 0, nil)
|
|
err := actionHandler.Handle(a)
|
|
assert.NoError(t, err)
|
|
|
|
Config.Actions.Hook = "http://invalid:1234"
|
|
err = actionHandler.Handle(a)
|
|
assert.Error(t, err)
|
|
|
|
Config.Actions.Hook = fmt.Sprintf("http://%v/404", httpAddr)
|
|
err = actionHandler.Handle(a)
|
|
if assert.Error(t, err) {
|
|
assert.EqualError(t, err, errUnexpectedHTTResponse.Error())
|
|
}
|
|
|
|
Config.Actions = actionsCopy
|
|
}
|
|
|
|
func TestActionCMD(t *testing.T) {
|
|
if runtime.GOOS == osWindows {
|
|
t.Skip("this test is not available on Windows")
|
|
}
|
|
actionsCopy := Config.Actions
|
|
|
|
hookCmd, err := exec.LookPath("true")
|
|
assert.NoError(t, err)
|
|
|
|
Config.Actions = ProtocolActions{
|
|
ExecuteOn: []string{operationDownload},
|
|
Hook: hookCmd,
|
|
}
|
|
user := &dataprovider.User{
|
|
Username: "username",
|
|
}
|
|
a := newActionNotification(user, operationDownload, "path", "vpath", "target", "", ProtocolSFTP, 123, 0, nil)
|
|
err = actionHandler.Handle(a)
|
|
assert.NoError(t, err)
|
|
|
|
ExecuteActionNotification(user, OperationSSHCmd, "path", "vpath", "target", "sha1sum", ProtocolSSH, 0, nil)
|
|
|
|
Config.Actions = actionsCopy
|
|
}
|
|
|
|
func TestWrongActions(t *testing.T) {
|
|
actionsCopy := Config.Actions
|
|
|
|
badCommand := "/bad/command"
|
|
if runtime.GOOS == osWindows {
|
|
badCommand = "C:\\bad\\command"
|
|
}
|
|
Config.Actions = ProtocolActions{
|
|
ExecuteOn: []string{operationUpload},
|
|
Hook: badCommand,
|
|
}
|
|
user := &dataprovider.User{
|
|
Username: "username",
|
|
}
|
|
|
|
a := newActionNotification(user, operationUpload, "", "", "", "", ProtocolSFTP, 123, 0, nil)
|
|
err := actionHandler.Handle(a)
|
|
assert.Error(t, err, "action with bad command must fail")
|
|
|
|
a.Action = operationDelete
|
|
err = actionHandler.Handle(a)
|
|
assert.EqualError(t, err, errUnconfiguredAction.Error())
|
|
|
|
Config.Actions.Hook = "http://foo\x7f.com/"
|
|
a.Action = operationUpload
|
|
err = actionHandler.Handle(a)
|
|
assert.Error(t, err, "action with bad url must fail")
|
|
|
|
Config.Actions.Hook = ""
|
|
err = actionHandler.Handle(a)
|
|
if assert.Error(t, err) {
|
|
assert.EqualError(t, err, errNoHook.Error())
|
|
}
|
|
|
|
Config.Actions.Hook = "relative path"
|
|
err = actionHandler.Handle(a)
|
|
if assert.Error(t, err) {
|
|
assert.EqualError(t, err, fmt.Sprintf("invalid notification command %#v", Config.Actions.Hook))
|
|
}
|
|
|
|
Config.Actions = actionsCopy
|
|
}
|
|
|
|
func TestPreDeleteAction(t *testing.T) {
|
|
if runtime.GOOS == osWindows {
|
|
t.Skip("this test is not available on Windows")
|
|
}
|
|
actionsCopy := Config.Actions
|
|
|
|
hookCmd, err := exec.LookPath("true")
|
|
assert.NoError(t, err)
|
|
Config.Actions = ProtocolActions{
|
|
ExecuteOn: []string{operationPreDelete},
|
|
Hook: hookCmd,
|
|
}
|
|
homeDir := filepath.Join(os.TempDir(), "test_user")
|
|
err = os.MkdirAll(homeDir, os.ModePerm)
|
|
assert.NoError(t, err)
|
|
user := dataprovider.User{
|
|
Username: "username",
|
|
HomeDir: homeDir,
|
|
}
|
|
user.Permissions = make(map[string][]string)
|
|
user.Permissions["/"] = []string{dataprovider.PermAny}
|
|
fs := vfs.NewOsFs("id", homeDir, "")
|
|
c := NewBaseConnection("id", ProtocolSFTP, "", user)
|
|
|
|
testfile := filepath.Join(user.HomeDir, "testfile")
|
|
err = os.WriteFile(testfile, []byte("test"), os.ModePerm)
|
|
assert.NoError(t, err)
|
|
info, err := os.Stat(testfile)
|
|
assert.NoError(t, err)
|
|
err = c.RemoveFile(fs, testfile, "testfile", info)
|
|
assert.NoError(t, err)
|
|
assert.FileExists(t, testfile)
|
|
|
|
os.RemoveAll(homeDir)
|
|
|
|
Config.Actions = actionsCopy
|
|
}
|
|
|
|
type actionHandlerStub struct {
|
|
called bool
|
|
}
|
|
|
|
func (h *actionHandlerStub) Handle(notification *ActionNotification) error {
|
|
h.called = true
|
|
|
|
return nil
|
|
}
|
|
|
|
func TestInitializeActionHandler(t *testing.T) {
|
|
handler := &actionHandlerStub{}
|
|
|
|
InitializeActionHandler(handler)
|
|
t.Cleanup(func() {
|
|
InitializeActionHandler(&defaultActionHandler{})
|
|
})
|
|
|
|
err := actionHandler.Handle(&ActionNotification{})
|
|
|
|
assert.NoError(t, err)
|
|
assert.True(t, handler.called)
|
|
}
|