2019-07-27 07:38:09 +00:00
|
|
|
package sftpd
|
|
|
|
|
|
|
|
import (
|
2019-08-24 12:41:15 +00:00
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
2019-10-10 07:04:17 +00:00
|
|
|
"net"
|
2019-08-04 07:37:58 +00:00
|
|
|
"os"
|
2019-07-27 19:19:30 +00:00
|
|
|
"runtime"
|
2019-07-27 07:38:09 +00:00
|
|
|
"testing"
|
2019-08-24 12:41:15 +00:00
|
|
|
"time"
|
2019-08-04 07:37:58 +00:00
|
|
|
|
2019-08-04 10:35:33 +00:00
|
|
|
"github.com/drakkan/sftpgo/dataprovider"
|
2019-10-07 16:19:01 +00:00
|
|
|
"github.com/drakkan/sftpgo/utils"
|
2019-08-04 07:37:58 +00:00
|
|
|
"github.com/pkg/sftp"
|
2019-07-27 07:38:09 +00:00
|
|
|
)
|
|
|
|
|
2019-08-24 12:41:15 +00:00
|
|
|
type MockChannel struct {
|
|
|
|
Buffer *bytes.Buffer
|
|
|
|
StdErrBuffer *bytes.Buffer
|
|
|
|
ReadError error
|
|
|
|
WriteError error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *MockChannel) Read(data []byte) (int, error) {
|
|
|
|
if c.ReadError != nil {
|
|
|
|
return 0, c.ReadError
|
|
|
|
}
|
|
|
|
return c.Buffer.Read(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *MockChannel) Write(data []byte) (int, error) {
|
|
|
|
if c.WriteError != nil {
|
|
|
|
return 0, c.WriteError
|
|
|
|
}
|
|
|
|
return c.Buffer.Write(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *MockChannel) Close() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *MockChannel) CloseWrite() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *MockChannel) SendRequest(name string, wantReply bool, payload []byte) (bool, error) {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *MockChannel) Stderr() io.ReadWriter {
|
|
|
|
return c.StdErrBuffer
|
|
|
|
}
|
|
|
|
|
2019-07-27 07:38:09 +00:00
|
|
|
func TestWrongActions(t *testing.T) {
|
|
|
|
actionsCopy := actions
|
2019-07-27 19:19:30 +00:00
|
|
|
badCommand := "/bad/command"
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
badCommand = "C:\\bad\\command"
|
|
|
|
}
|
2019-07-27 07:38:09 +00:00
|
|
|
actions = Actions{
|
|
|
|
ExecuteOn: []string{operationDownload},
|
2019-07-27 19:19:30 +00:00
|
|
|
Command: badCommand,
|
2019-07-27 07:38:09 +00:00
|
|
|
HTTPNotificationURL: "",
|
|
|
|
}
|
|
|
|
err := executeAction(operationDownload, "username", "path", "")
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("action with bad command must fail")
|
|
|
|
}
|
2019-08-04 07:37:58 +00:00
|
|
|
err = executeAction(operationDelete, "username", "path", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("action not configured must silently fail")
|
|
|
|
}
|
2019-07-27 07:38:09 +00:00
|
|
|
actions.Command = ""
|
|
|
|
actions.HTTPNotificationURL = "http://foo\x7f.com/"
|
|
|
|
err = executeAction(operationDownload, "username", "path", "")
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("action with bad url must fail")
|
|
|
|
}
|
|
|
|
actions = actionsCopy
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRemoveNonexistentTransfer(t *testing.T) {
|
|
|
|
transfer := Transfer{}
|
|
|
|
err := removeTransfer(&transfer)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("remove nonexistent transfer must fail")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRemoveNonexistentQuotaScan(t *testing.T) {
|
|
|
|
err := RemoveQuotaScan("username")
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("remove nonexistent transfer must fail")
|
|
|
|
}
|
|
|
|
}
|
2019-08-04 07:37:58 +00:00
|
|
|
|
|
|
|
func TestGetOSOpenFlags(t *testing.T) {
|
|
|
|
var flags sftp.FileOpenFlags
|
|
|
|
flags.Write = true
|
|
|
|
flags.Excl = true
|
2019-08-04 09:02:38 +00:00
|
|
|
osFlags := getOSOpenFlags(flags)
|
2019-10-09 15:33:30 +00:00
|
|
|
if osFlags&os.O_WRONLY == 0 || osFlags&os.O_EXCL == 0 {
|
|
|
|
t.Errorf("error getting os flags from sftp file open flags")
|
|
|
|
}
|
|
|
|
flags.Append = true
|
|
|
|
// append flag should be ignored to allow resume
|
|
|
|
if osFlags&os.O_WRONLY == 0 || osFlags&os.O_EXCL == 0 {
|
2019-08-04 07:37:58 +00:00
|
|
|
t.Errorf("error getting os flags from sftp file open flags")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-09 15:33:30 +00:00
|
|
|
func TestUploadResumeInvalidOffset(t *testing.T) {
|
|
|
|
testfile := "testfile"
|
|
|
|
file, _ := os.Create(testfile)
|
|
|
|
transfer := Transfer{
|
|
|
|
file: file,
|
|
|
|
path: file.Name(),
|
|
|
|
start: time.Now(),
|
|
|
|
bytesSent: 0,
|
|
|
|
bytesReceived: 0,
|
|
|
|
user: dataprovider.User{
|
|
|
|
Username: "testuser",
|
|
|
|
},
|
|
|
|
connectionID: "",
|
|
|
|
transferType: transferUpload,
|
|
|
|
lastActivity: time.Now(),
|
|
|
|
isNewFile: false,
|
|
|
|
protocol: protocolSFTP,
|
|
|
|
transferError: nil,
|
|
|
|
isFinished: false,
|
|
|
|
minWriteOffset: 10,
|
|
|
|
}
|
|
|
|
_, err := transfer.WriteAt([]byte("test"), 0)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("upload with invalid offset must fail")
|
2019-08-04 07:37:58 +00:00
|
|
|
}
|
2019-10-09 15:33:30 +00:00
|
|
|
os.Remove(testfile)
|
2019-08-04 07:37:58 +00:00
|
|
|
}
|
2019-08-04 10:35:33 +00:00
|
|
|
|
|
|
|
func TestUploadFiles(t *testing.T) {
|
|
|
|
oldUploadMode := uploadMode
|
|
|
|
uploadMode = uploadModeAtomic
|
|
|
|
c := Connection{}
|
|
|
|
var flags sftp.FileOpenFlags
|
|
|
|
flags.Write = true
|
|
|
|
flags.Trunc = true
|
|
|
|
_, err := c.handleSFTPUploadToExistingFile(flags, "missing_path", "other_missing_path", 0)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("upload to existing file must fail if one or both paths are invalid")
|
|
|
|
}
|
|
|
|
uploadMode = uploadModeStandard
|
|
|
|
_, err = c.handleSFTPUploadToExistingFile(flags, "missing_path", "other_missing_path", 0)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("upload to existing file must fail if one or both paths are invalid")
|
|
|
|
}
|
|
|
|
missingFile := "missing/relative/file.txt"
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
missingFile = "missing\\relative\\file.txt"
|
|
|
|
}
|
|
|
|
_, err = c.handleSFTPUploadToNewFile(".", missingFile)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("upload new file in missing path must fail")
|
|
|
|
}
|
|
|
|
uploadMode = oldUploadMode
|
|
|
|
}
|
|
|
|
|
2019-08-11 12:53:37 +00:00
|
|
|
func TestWithInvalidHome(t *testing.T) {
|
2019-08-04 10:35:33 +00:00
|
|
|
u := dataprovider.User{}
|
|
|
|
u.HomeDir = "home_rel_path"
|
2019-09-05 19:35:53 +00:00
|
|
|
_, err := loginUser(u, "password")
|
2019-08-04 10:35:33 +00:00
|
|
|
if err == nil {
|
|
|
|
t.Errorf("login a user with an invalid home_dir must fail")
|
|
|
|
}
|
2019-08-11 12:53:37 +00:00
|
|
|
c := Connection{
|
|
|
|
User: u,
|
|
|
|
}
|
|
|
|
err = c.isSubDir("dir_rel_path")
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("tested path is not a home subdir")
|
|
|
|
}
|
2019-08-04 10:35:33 +00:00
|
|
|
}
|
2019-08-24 12:41:15 +00:00
|
|
|
|
|
|
|
func TestSFTPCmdTargetPath(t *testing.T) {
|
|
|
|
u := dataprovider.User{}
|
|
|
|
u.HomeDir = "home_rel_path"
|
|
|
|
u.Username = "test"
|
|
|
|
u.Permissions = []string{"*"}
|
|
|
|
connection := Connection{
|
|
|
|
User: u,
|
|
|
|
}
|
|
|
|
_, err := connection.getSFTPCmdTargetPath("invalid_path")
|
2019-10-14 20:44:57 +00:00
|
|
|
if err != sftp.ErrSSHFxOpUnsupported {
|
2019-08-24 12:41:15 +00:00
|
|
|
t.Errorf("getSFTPCmdTargetPath must fal with the expected error: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSFTPGetUsedQuota(t *testing.T) {
|
|
|
|
u := dataprovider.User{}
|
|
|
|
u.HomeDir = "home_rel_path"
|
|
|
|
u.Username = "test_invalid_user"
|
|
|
|
u.QuotaSize = 4096
|
|
|
|
u.QuotaFiles = 1
|
|
|
|
u.Permissions = []string{"*"}
|
|
|
|
connection := Connection{
|
|
|
|
User: u,
|
|
|
|
}
|
|
|
|
res := connection.hasSpace(false)
|
|
|
|
if res != false {
|
|
|
|
t.Errorf("has space must return false if the user is invalid")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSCPFileMode(t *testing.T) {
|
|
|
|
mode := getFileModeAsString(0, true)
|
|
|
|
if mode != "0755" {
|
|
|
|
t.Errorf("invalid file mode: %v expected: 0755", mode)
|
|
|
|
}
|
|
|
|
mode = getFileModeAsString(0700, true)
|
|
|
|
if mode != "0700" {
|
|
|
|
t.Errorf("invalid file mode: %v expected: 0700", mode)
|
|
|
|
}
|
|
|
|
mode = getFileModeAsString(0750, true)
|
|
|
|
if mode != "0750" {
|
|
|
|
t.Errorf("invalid file mode: %v expected: 0750", mode)
|
|
|
|
}
|
|
|
|
mode = getFileModeAsString(0777, true)
|
|
|
|
if mode != "0777" {
|
|
|
|
t.Errorf("invalid file mode: %v expected: 0777", mode)
|
|
|
|
}
|
|
|
|
mode = getFileModeAsString(0640, false)
|
|
|
|
if mode != "0640" {
|
|
|
|
t.Errorf("invalid file mode: %v expected: 0640", mode)
|
|
|
|
}
|
|
|
|
mode = getFileModeAsString(0600, false)
|
|
|
|
if mode != "0600" {
|
|
|
|
t.Errorf("invalid file mode: %v expected: 0600", mode)
|
|
|
|
}
|
|
|
|
mode = getFileModeAsString(0, false)
|
|
|
|
if mode != "0644" {
|
|
|
|
t.Errorf("invalid file mode: %v expected: 0644", mode)
|
|
|
|
}
|
|
|
|
fileMode := uint32(0777)
|
|
|
|
fileMode = fileMode | uint32(os.ModeSetgid)
|
|
|
|
fileMode = fileMode | uint32(os.ModeSetuid)
|
|
|
|
fileMode = fileMode | uint32(os.ModeSticky)
|
|
|
|
mode = getFileModeAsString(os.FileMode(fileMode), false)
|
|
|
|
if mode != "7777" {
|
|
|
|
t.Errorf("invalid file mode: %v expected: 7777", mode)
|
|
|
|
}
|
|
|
|
fileMode = uint32(0644)
|
|
|
|
fileMode = fileMode | uint32(os.ModeSetgid)
|
|
|
|
mode = getFileModeAsString(os.FileMode(fileMode), false)
|
|
|
|
if mode != "4644" {
|
|
|
|
t.Errorf("invalid file mode: %v expected: 4644", mode)
|
|
|
|
}
|
|
|
|
fileMode = uint32(0600)
|
|
|
|
fileMode = fileMode | uint32(os.ModeSetuid)
|
|
|
|
mode = getFileModeAsString(os.FileMode(fileMode), false)
|
|
|
|
if mode != "2600" {
|
|
|
|
t.Errorf("invalid file mode: %v expected: 2600", mode)
|
|
|
|
}
|
|
|
|
fileMode = uint32(0044)
|
|
|
|
fileMode = fileMode | uint32(os.ModeSticky)
|
|
|
|
mode = getFileModeAsString(os.FileMode(fileMode), false)
|
|
|
|
if mode != "1044" {
|
|
|
|
t.Errorf("invalid file mode: %v expected: 1044", mode)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSCPGetNonExistingDirContent(t *testing.T) {
|
|
|
|
_, err := getDirContents("non_existing")
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("get non existing dir contents must fail")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSCPParseUploadMessage(t *testing.T) {
|
|
|
|
buf := make([]byte, 65535)
|
|
|
|
stdErrBuf := make([]byte, 65535)
|
|
|
|
mockSSHChannel := MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: nil,
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
connection := Connection{
|
|
|
|
channel: &mockSSHChannel,
|
|
|
|
}
|
2019-08-24 12:41:15 +00:00
|
|
|
scpCommand := scpCommand{
|
|
|
|
connection: connection,
|
|
|
|
args: []string{"-t", "/tmp"},
|
|
|
|
}
|
|
|
|
_, _, err := scpCommand.parseUploadMessage("invalid")
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("parsing invalid upload message must fail")
|
|
|
|
}
|
|
|
|
_, _, err = scpCommand.parseUploadMessage("D0755 0")
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("parsing incomplete upload message must fail")
|
|
|
|
}
|
|
|
|
_, _, err = scpCommand.parseUploadMessage("D0755 invalidsize testdir")
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("parsing upload message with invalid size must fail")
|
|
|
|
}
|
|
|
|
_, _, err = scpCommand.parseUploadMessage("D0755 0 ")
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("parsing upload message with invalid name must fail")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSCPProtocolMessages(t *testing.T) {
|
|
|
|
buf := make([]byte, 65535)
|
|
|
|
stdErrBuf := make([]byte, 65535)
|
|
|
|
readErr := fmt.Errorf("test read error")
|
|
|
|
writeErr := fmt.Errorf("test write error")
|
|
|
|
mockSSHChannel := MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: readErr,
|
|
|
|
WriteError: writeErr,
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
connection := Connection{
|
|
|
|
channel: &mockSSHChannel,
|
|
|
|
}
|
2019-08-24 12:41:15 +00:00
|
|
|
scpCommand := scpCommand{
|
|
|
|
connection: connection,
|
|
|
|
args: []string{"-t", "/tmp"},
|
|
|
|
}
|
|
|
|
_, err := scpCommand.readProtocolMessage()
|
|
|
|
if err == nil || err != readErr {
|
|
|
|
t.Errorf("read protocol message must fail, we are sending a fake error")
|
|
|
|
}
|
|
|
|
err = scpCommand.sendConfirmationMessage()
|
|
|
|
if err != writeErr {
|
|
|
|
t.Errorf("write confirmation message must fail, we are sending a fake error")
|
|
|
|
}
|
|
|
|
err = scpCommand.sendProtocolMessage("E\n")
|
|
|
|
if err != writeErr {
|
|
|
|
t.Errorf("write confirmation message must fail, we are sending a fake error")
|
|
|
|
}
|
|
|
|
_, err = scpCommand.getNextUploadProtocolMessage()
|
|
|
|
if err == nil || err != readErr {
|
|
|
|
t.Errorf("read next upload protocol message must fail, we are sending a fake read error")
|
|
|
|
}
|
|
|
|
mockSSHChannel = MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer([]byte("T1183832947 0 1183833773 0\n")),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: nil,
|
|
|
|
WriteError: writeErr,
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
scpCommand.connection.channel = &mockSSHChannel
|
2019-08-24 12:41:15 +00:00
|
|
|
_, err = scpCommand.getNextUploadProtocolMessage()
|
|
|
|
if err == nil || err != writeErr {
|
|
|
|
t.Errorf("read next upload protocol message must fail, we are sending a fake write error")
|
|
|
|
}
|
|
|
|
respBuffer := []byte{0x02}
|
|
|
|
protocolErrorMsg := "protocol error msg"
|
|
|
|
respBuffer = append(respBuffer, protocolErrorMsg...)
|
|
|
|
respBuffer = append(respBuffer, 0x0A)
|
|
|
|
mockSSHChannel = MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(respBuffer),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: nil,
|
|
|
|
WriteError: nil,
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
scpCommand.connection.channel = &mockSSHChannel
|
2019-08-24 12:41:15 +00:00
|
|
|
err = scpCommand.readConfirmationMessage()
|
|
|
|
if err == nil || err.Error() != protocolErrorMsg {
|
|
|
|
t.Errorf("read confirmation message must return the expected protocol error, actual err: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSCPTestDownloadProtocolMessages(t *testing.T) {
|
|
|
|
buf := make([]byte, 65535)
|
|
|
|
stdErrBuf := make([]byte, 65535)
|
|
|
|
readErr := fmt.Errorf("test read error")
|
|
|
|
writeErr := fmt.Errorf("test write error")
|
|
|
|
mockSSHChannel := MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: readErr,
|
|
|
|
WriteError: writeErr,
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
connection := Connection{
|
|
|
|
channel: &mockSSHChannel,
|
|
|
|
}
|
2019-08-24 12:41:15 +00:00
|
|
|
scpCommand := scpCommand{
|
|
|
|
connection: connection,
|
|
|
|
args: []string{"-f", "-p", "/tmp"},
|
|
|
|
}
|
|
|
|
path := "testDir"
|
|
|
|
os.Mkdir(path, 0777)
|
|
|
|
stat, _ := os.Stat(path)
|
|
|
|
err := scpCommand.sendDownloadProtocolMessages(path, stat)
|
|
|
|
if err != writeErr {
|
|
|
|
t.Errorf("sendDownloadProtocolMessages must return the expected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
mockSSHChannel = MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: readErr,
|
|
|
|
WriteError: nil,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = scpCommand.sendDownloadProtocolMessages(path, stat)
|
|
|
|
if err != readErr {
|
|
|
|
t.Errorf("sendDownloadProtocolMessages must return the expected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
mockSSHChannel = MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: readErr,
|
|
|
|
WriteError: writeErr,
|
|
|
|
}
|
|
|
|
scpCommand.args = []string{"-f", "/tmp"}
|
2019-09-11 14:29:56 +00:00
|
|
|
scpCommand.connection.channel = &mockSSHChannel
|
2019-08-24 12:41:15 +00:00
|
|
|
err = scpCommand.sendDownloadProtocolMessages(path, stat)
|
|
|
|
if err != writeErr {
|
|
|
|
t.Errorf("sendDownloadProtocolMessages must return the expected error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
mockSSHChannel = MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: readErr,
|
|
|
|
WriteError: nil,
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
scpCommand.connection.channel = &mockSSHChannel
|
2019-08-24 12:41:15 +00:00
|
|
|
err = scpCommand.sendDownloadProtocolMessages(path, stat)
|
|
|
|
if err != readErr {
|
|
|
|
t.Errorf("sendDownloadProtocolMessages must return the expected error: %v", err)
|
|
|
|
}
|
|
|
|
os.Remove(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSCPCommandHandleErrors(t *testing.T) {
|
|
|
|
buf := make([]byte, 65535)
|
|
|
|
stdErrBuf := make([]byte, 65535)
|
|
|
|
readErr := fmt.Errorf("test read error")
|
|
|
|
writeErr := fmt.Errorf("test write error")
|
|
|
|
mockSSHChannel := MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: readErr,
|
|
|
|
WriteError: writeErr,
|
|
|
|
}
|
2019-10-10 07:04:17 +00:00
|
|
|
server, client := net.Pipe()
|
|
|
|
defer server.Close()
|
|
|
|
defer client.Close()
|
2019-09-11 14:29:56 +00:00
|
|
|
connection := Connection{
|
|
|
|
channel: &mockSSHChannel,
|
2019-10-10 07:04:17 +00:00
|
|
|
netConn: client,
|
2019-09-11 14:29:56 +00:00
|
|
|
}
|
2019-08-24 12:41:15 +00:00
|
|
|
scpCommand := scpCommand{
|
|
|
|
connection: connection,
|
|
|
|
args: []string{"-f", "/tmp"},
|
|
|
|
}
|
|
|
|
err := scpCommand.handle()
|
|
|
|
if err == nil || err != readErr {
|
|
|
|
t.Errorf("scp download must fail, we are sending a fake error")
|
|
|
|
}
|
|
|
|
scpCommand.args = []string{"-i", "/tmp"}
|
|
|
|
err = scpCommand.handle()
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("invalid scp command must fail")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-24 20:44:01 +00:00
|
|
|
func TestSCPRecursiveDownloadErrors(t *testing.T) {
|
2019-08-24 12:41:15 +00:00
|
|
|
buf := make([]byte, 65535)
|
|
|
|
stdErrBuf := make([]byte, 65535)
|
|
|
|
readErr := fmt.Errorf("test read error")
|
|
|
|
writeErr := fmt.Errorf("test write error")
|
|
|
|
mockSSHChannel := MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: readErr,
|
|
|
|
WriteError: writeErr,
|
|
|
|
}
|
2019-10-10 07:04:17 +00:00
|
|
|
server, client := net.Pipe()
|
|
|
|
defer server.Close()
|
|
|
|
defer client.Close()
|
2019-09-11 14:29:56 +00:00
|
|
|
connection := Connection{
|
|
|
|
channel: &mockSSHChannel,
|
2019-10-10 07:04:17 +00:00
|
|
|
netConn: client,
|
2019-09-11 14:29:56 +00:00
|
|
|
}
|
2019-08-24 12:41:15 +00:00
|
|
|
scpCommand := scpCommand{
|
|
|
|
connection: connection,
|
|
|
|
args: []string{"-r", "-f", "/tmp"},
|
|
|
|
}
|
|
|
|
path := "testDir"
|
|
|
|
os.Mkdir(path, 0777)
|
|
|
|
stat, _ := os.Stat(path)
|
|
|
|
err := scpCommand.handleRecursiveDownload("invalid_dir", stat)
|
|
|
|
if err != writeErr {
|
|
|
|
t.Errorf("recursive upload download must fail with the expected error: %v", err)
|
|
|
|
}
|
|
|
|
mockSSHChannel = MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: nil,
|
|
|
|
WriteError: nil,
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
scpCommand.connection.channel = &mockSSHChannel
|
2019-08-24 12:41:15 +00:00
|
|
|
err = scpCommand.handleRecursiveDownload("invalid_dir", stat)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("recursive upload download must fail for a non existing dir")
|
|
|
|
}
|
|
|
|
|
|
|
|
os.Remove(path)
|
|
|
|
}
|
|
|
|
|
2019-08-24 20:44:01 +00:00
|
|
|
func TestSCPRecursiveUploadErrors(t *testing.T) {
|
2019-08-24 12:41:15 +00:00
|
|
|
buf := make([]byte, 65535)
|
|
|
|
stdErrBuf := make([]byte, 65535)
|
|
|
|
readErr := fmt.Errorf("test read error")
|
|
|
|
writeErr := fmt.Errorf("test write error")
|
|
|
|
mockSSHChannel := MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: readErr,
|
|
|
|
WriteError: writeErr,
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
connection := Connection{
|
|
|
|
channel: &mockSSHChannel,
|
|
|
|
}
|
2019-08-24 12:41:15 +00:00
|
|
|
scpCommand := scpCommand{
|
|
|
|
connection: connection,
|
|
|
|
args: []string{"-r", "-t", "/tmp"},
|
|
|
|
}
|
|
|
|
err := scpCommand.handleRecursiveUpload()
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("recursive upload must fail, we send a fake error message")
|
|
|
|
}
|
|
|
|
mockSSHChannel = MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: readErr,
|
|
|
|
WriteError: nil,
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
scpCommand.connection.channel = &mockSSHChannel
|
2019-08-24 12:41:15 +00:00
|
|
|
err = scpCommand.handleRecursiveUpload()
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("recursive upload must fail, we send a fake error message")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSCPCreateDirs(t *testing.T) {
|
|
|
|
buf := make([]byte, 65535)
|
|
|
|
stdErrBuf := make([]byte, 65535)
|
|
|
|
u := dataprovider.User{}
|
|
|
|
u.HomeDir = "home_rel_path"
|
|
|
|
u.Username = "test"
|
|
|
|
u.Permissions = []string{"*"}
|
|
|
|
mockSSHChannel := MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: nil,
|
|
|
|
WriteError: nil,
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
connection := Connection{
|
|
|
|
User: u,
|
|
|
|
channel: &mockSSHChannel,
|
|
|
|
}
|
2019-08-24 12:41:15 +00:00
|
|
|
scpCommand := scpCommand{
|
|
|
|
connection: connection,
|
|
|
|
args: []string{"-r", "-t", "/tmp"},
|
|
|
|
}
|
|
|
|
err := scpCommand.handleCreateDir("invalid_dir")
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("create invalid dir must fail")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSCPDownloadFileData(t *testing.T) {
|
|
|
|
testfile := "testfile"
|
|
|
|
buf := make([]byte, 65535)
|
|
|
|
readErr := fmt.Errorf("test read error")
|
|
|
|
writeErr := fmt.Errorf("test write error")
|
|
|
|
stdErrBuf := make([]byte, 65535)
|
|
|
|
mockSSHChannelReadErr := MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: readErr,
|
|
|
|
WriteError: nil,
|
|
|
|
}
|
|
|
|
mockSSHChannelWriteErr := MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: nil,
|
|
|
|
WriteError: writeErr,
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
connection := Connection{
|
|
|
|
channel: &mockSSHChannelReadErr,
|
|
|
|
}
|
2019-08-24 12:41:15 +00:00
|
|
|
scpCommand := scpCommand{
|
|
|
|
connection: connection,
|
|
|
|
args: []string{"-r", "-f", "/tmp"},
|
|
|
|
}
|
|
|
|
ioutil.WriteFile(testfile, []byte("test"), 0666)
|
|
|
|
stat, _ := os.Stat(testfile)
|
|
|
|
err := scpCommand.sendDownloadFileData(testfile, stat, nil)
|
|
|
|
if err != readErr {
|
|
|
|
t.Errorf("send download file data must fail with the expected error: %v", err)
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
scpCommand.connection.channel = &mockSSHChannelWriteErr
|
2019-08-24 12:41:15 +00:00
|
|
|
err = scpCommand.sendDownloadFileData(testfile, stat, nil)
|
|
|
|
if err != writeErr {
|
|
|
|
t.Errorf("send download file data must fail with the expected error: %v", err)
|
|
|
|
}
|
|
|
|
scpCommand.args = []string{"-r", "-p", "-f", "/tmp"}
|
|
|
|
err = scpCommand.sendDownloadFileData(testfile, stat, nil)
|
|
|
|
if err != writeErr {
|
|
|
|
t.Errorf("send download file data must fail with the expected error: %v", err)
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
scpCommand.connection.channel = &mockSSHChannelReadErr
|
2019-08-24 12:41:15 +00:00
|
|
|
err = scpCommand.sendDownloadFileData(testfile, stat, nil)
|
|
|
|
if err != readErr {
|
|
|
|
t.Errorf("send download file data must fail with the expected error: %v", err)
|
|
|
|
}
|
|
|
|
os.Remove(testfile)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSCPUploadFiledata(t *testing.T) {
|
|
|
|
testfile := "testfile"
|
|
|
|
buf := make([]byte, 65535)
|
|
|
|
stdErrBuf := make([]byte, 65535)
|
|
|
|
readErr := fmt.Errorf("test read error")
|
|
|
|
writeErr := fmt.Errorf("test write error")
|
|
|
|
mockSSHChannel := MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: readErr,
|
|
|
|
WriteError: writeErr,
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
connection := Connection{
|
|
|
|
User: dataprovider.User{
|
|
|
|
Username: "testuser",
|
|
|
|
},
|
|
|
|
protocol: protocolSCP,
|
|
|
|
channel: &mockSSHChannel,
|
|
|
|
}
|
2019-08-24 12:41:15 +00:00
|
|
|
scpCommand := scpCommand{
|
|
|
|
connection: connection,
|
|
|
|
args: []string{"-r", "-t", "/tmp"},
|
|
|
|
}
|
|
|
|
file, _ := os.Create(testfile)
|
|
|
|
transfer := Transfer{
|
2019-10-09 15:33:30 +00:00
|
|
|
file: file,
|
|
|
|
path: file.Name(),
|
|
|
|
start: time.Now(),
|
|
|
|
bytesSent: 0,
|
|
|
|
bytesReceived: 0,
|
|
|
|
user: scpCommand.connection.User,
|
|
|
|
connectionID: "",
|
|
|
|
transferType: transferDownload,
|
|
|
|
lastActivity: time.Now(),
|
|
|
|
isNewFile: true,
|
|
|
|
protocol: connection.protocol,
|
|
|
|
transferError: nil,
|
|
|
|
isFinished: false,
|
|
|
|
minWriteOffset: 0,
|
2019-08-24 12:41:15 +00:00
|
|
|
}
|
|
|
|
addTransfer(&transfer)
|
|
|
|
err := scpCommand.getUploadFileData(2, &transfer)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("upload must fail, we send a fake write error message")
|
|
|
|
}
|
|
|
|
mockSSHChannel = MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: readErr,
|
|
|
|
WriteError: nil,
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
scpCommand.connection.channel = &mockSSHChannel
|
2019-08-24 12:41:15 +00:00
|
|
|
file, _ = os.Create(testfile)
|
|
|
|
transfer.file = file
|
|
|
|
addTransfer(&transfer)
|
|
|
|
err = scpCommand.getUploadFileData(2, &transfer)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("upload must fail, we send a fake read error message")
|
|
|
|
}
|
|
|
|
|
|
|
|
respBuffer := []byte("12")
|
|
|
|
respBuffer = append(respBuffer, 0x02)
|
|
|
|
mockSSHChannel = MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(respBuffer),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: nil,
|
|
|
|
WriteError: nil,
|
|
|
|
}
|
2019-09-11 14:29:56 +00:00
|
|
|
scpCommand.connection.channel = &mockSSHChannel
|
2019-08-24 12:41:15 +00:00
|
|
|
file, _ = os.Create(testfile)
|
|
|
|
transfer.file = file
|
|
|
|
addTransfer(&transfer)
|
|
|
|
err = scpCommand.getUploadFileData(2, &transfer)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("upload must fail, we have not enough data to read")
|
|
|
|
}
|
|
|
|
|
|
|
|
// the file is already closed so we have an error on trasfer closing
|
|
|
|
mockSSHChannel = MockChannel{
|
|
|
|
Buffer: bytes.NewBuffer(buf),
|
|
|
|
StdErrBuffer: bytes.NewBuffer(stdErrBuf),
|
|
|
|
ReadError: nil,
|
|
|
|
WriteError: nil,
|
|
|
|
}
|
|
|
|
addTransfer(&transfer)
|
|
|
|
err = scpCommand.getUploadFileData(0, &transfer)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("upload must fail, the file is closed")
|
|
|
|
}
|
|
|
|
os.Remove(testfile)
|
|
|
|
}
|
2019-09-10 16:47:21 +00:00
|
|
|
|
|
|
|
func TestUploadError(t *testing.T) {
|
2019-10-09 15:33:30 +00:00
|
|
|
oldUploadMode := uploadMode
|
|
|
|
uploadMode = uploadModeAtomic
|
2019-09-10 16:47:21 +00:00
|
|
|
connection := Connection{
|
|
|
|
User: dataprovider.User{
|
|
|
|
Username: "testuser",
|
|
|
|
},
|
|
|
|
protocol: protocolSCP,
|
|
|
|
}
|
|
|
|
testfile := "testfile"
|
|
|
|
fileTempName := "temptestfile"
|
|
|
|
file, _ := os.Create(fileTempName)
|
|
|
|
transfer := Transfer{
|
2019-10-09 15:33:30 +00:00
|
|
|
file: file,
|
|
|
|
path: testfile,
|
|
|
|
start: time.Now(),
|
|
|
|
bytesSent: 0,
|
|
|
|
bytesReceived: 100,
|
|
|
|
user: connection.User,
|
|
|
|
connectionID: "",
|
|
|
|
transferType: transferUpload,
|
|
|
|
lastActivity: time.Now(),
|
|
|
|
isNewFile: true,
|
|
|
|
protocol: connection.protocol,
|
|
|
|
transferError: nil,
|
|
|
|
isFinished: false,
|
|
|
|
minWriteOffset: 0,
|
2019-09-10 16:47:21 +00:00
|
|
|
}
|
|
|
|
addTransfer(&transfer)
|
|
|
|
transfer.TransferError(fmt.Errorf("fake error"))
|
|
|
|
transfer.Close()
|
|
|
|
if transfer.bytesReceived > 0 {
|
|
|
|
t.Errorf("byte sent should be 0 for a failed transfer: %v", transfer.bytesSent)
|
|
|
|
}
|
|
|
|
_, err := os.Stat(testfile)
|
|
|
|
if !os.IsNotExist(err) {
|
|
|
|
t.Errorf("file uploaded must be deleted after an error: %v", err)
|
|
|
|
}
|
|
|
|
_, err = os.Stat(fileTempName)
|
|
|
|
if !os.IsNotExist(err) {
|
|
|
|
t.Errorf("file uploaded must be deleted after an error: %v", err)
|
|
|
|
}
|
2019-10-09 15:33:30 +00:00
|
|
|
uploadMode = oldUploadMode
|
2019-09-10 16:47:21 +00:00
|
|
|
}
|
2019-10-07 16:19:01 +00:00
|
|
|
|
|
|
|
func TestConnectionStatusStruct(t *testing.T) {
|
|
|
|
var transfers []connectionTransfer
|
|
|
|
transferUL := connectionTransfer{
|
|
|
|
OperationType: operationUpload,
|
|
|
|
StartTime: utils.GetTimeAsMsSinceEpoch(time.Now()),
|
|
|
|
Size: 123,
|
|
|
|
LastActivity: utils.GetTimeAsMsSinceEpoch(time.Now()),
|
|
|
|
Path: "/test.upload",
|
|
|
|
}
|
|
|
|
transferDL := connectionTransfer{
|
|
|
|
OperationType: operationDownload,
|
|
|
|
StartTime: utils.GetTimeAsMsSinceEpoch(time.Now()),
|
|
|
|
Size: 123,
|
|
|
|
LastActivity: utils.GetTimeAsMsSinceEpoch(time.Now()),
|
|
|
|
Path: "/test.download",
|
|
|
|
}
|
|
|
|
transfers = append(transfers, transferUL)
|
|
|
|
transfers = append(transfers, transferDL)
|
|
|
|
c := ConnectionStatus{
|
|
|
|
Username: "test",
|
|
|
|
ConnectionID: "123",
|
|
|
|
ClientVersion: "fakeClient-1.0.0",
|
|
|
|
RemoteAddress: "127.0.0.1:1234",
|
|
|
|
ConnectionTime: utils.GetTimeAsMsSinceEpoch(time.Now()),
|
|
|
|
LastActivity: utils.GetTimeAsMsSinceEpoch(time.Now()),
|
|
|
|
Protocol: "SFTP",
|
|
|
|
Transfers: transfers,
|
|
|
|
}
|
|
|
|
durationString := c.GetConnectionDuration()
|
|
|
|
if len(durationString) == 0 {
|
|
|
|
t.Errorf("error getting connection duration")
|
|
|
|
}
|
|
|
|
transfersString := c.GetTransfersAsString()
|
|
|
|
if len(transfersString) == 0 {
|
|
|
|
t.Errorf("error getting transfers as string")
|
|
|
|
}
|
|
|
|
connInfo := c.GetConnectionInfo()
|
|
|
|
if len(connInfo) == 0 {
|
|
|
|
t.Errorf("error getting connection info")
|
|
|
|
}
|
|
|
|
}
|
2019-11-12 06:37:47 +00:00
|
|
|
|
|
|
|
func TestSFTPExtensions(t *testing.T) {
|
|
|
|
initialSFTPExtensions := sftpExtensions
|
|
|
|
c := Configuration{}
|
|
|
|
err := c.configureSFTPExtensions()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("error configuring SFTP extensions")
|
|
|
|
}
|
|
|
|
sftpExtensions = append(sftpExtensions, "invalid@example.com")
|
|
|
|
err = c.configureSFTPExtensions()
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("configuring invalid SFTP extensions must fail")
|
|
|
|
}
|
|
|
|
sftpExtensions = initialSFTPExtensions
|
|
|
|
}
|