mirror of
https://github.com/octoleo/restic.git
synced 2024-10-31 19:02:32 +00:00
108 lines
2.5 KiB
Go
108 lines
2.5 KiB
Go
package sftp
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
var configTests = []struct {
|
|
in string
|
|
cfg Config
|
|
}{
|
|
// first form, user specified sftp://user@host/dir
|
|
{
|
|
"sftp://user@host/dir/subdir",
|
|
Config{User: "user", Host: "host", Path: "dir/subdir", Connections: 5},
|
|
},
|
|
{
|
|
"sftp://host/dir/subdir",
|
|
Config{Host: "host", Path: "dir/subdir", Connections: 5},
|
|
},
|
|
{
|
|
"sftp://host//dir/subdir",
|
|
Config{Host: "host", Path: "/dir/subdir", Connections: 5},
|
|
},
|
|
{
|
|
"sftp://host:10022//dir/subdir",
|
|
Config{Host: "host", Port: "10022", Path: "/dir/subdir", Connections: 5},
|
|
},
|
|
{
|
|
"sftp://user@host:10022//dir/subdir",
|
|
Config{User: "user", Host: "host", Port: "10022", Path: "/dir/subdir", Connections: 5},
|
|
},
|
|
{
|
|
"sftp://user@host/dir/subdir/../other",
|
|
Config{User: "user", Host: "host", Path: "dir/other", Connections: 5},
|
|
},
|
|
{
|
|
"sftp://user@host/dir///subdir",
|
|
Config{User: "user", Host: "host", Path: "dir/subdir", Connections: 5},
|
|
},
|
|
|
|
// IPv6 address.
|
|
{
|
|
"sftp://user@[::1]/dir",
|
|
Config{User: "user", Host: "::1", Path: "dir", Connections: 5},
|
|
},
|
|
// IPv6 address with port.
|
|
{
|
|
"sftp://user@[::1]:22/dir",
|
|
Config{User: "user", Host: "::1", Port: "22", Path: "dir", Connections: 5},
|
|
},
|
|
|
|
// second form, user specified sftp:user@host:/dir
|
|
{
|
|
"sftp:user@host:/dir/subdir",
|
|
Config{User: "user", Host: "host", Path: "/dir/subdir", Connections: 5},
|
|
},
|
|
{
|
|
"sftp:user@domain@host:/dir/subdir",
|
|
Config{User: "user@domain", Host: "host", Path: "/dir/subdir", Connections: 5},
|
|
},
|
|
{
|
|
"sftp:host:../dir/subdir",
|
|
Config{Host: "host", Path: "../dir/subdir", Connections: 5},
|
|
},
|
|
{
|
|
"sftp:user@host:dir/subdir:suffix",
|
|
Config{User: "user", Host: "host", Path: "dir/subdir:suffix", Connections: 5},
|
|
},
|
|
{
|
|
"sftp:user@host:dir/subdir/../other",
|
|
Config{User: "user", Host: "host", Path: "dir/other", Connections: 5},
|
|
},
|
|
{
|
|
"sftp:user@host:dir///subdir",
|
|
Config{User: "user", Host: "host", Path: "dir/subdir", Connections: 5},
|
|
},
|
|
}
|
|
|
|
func TestParseConfig(t *testing.T) {
|
|
for i, test := range configTests {
|
|
cfg, err := ParseConfig(test.in)
|
|
if err != nil {
|
|
t.Errorf("test %d:%s failed: %v", i, test.in, err)
|
|
continue
|
|
}
|
|
|
|
if cfg != test.cfg {
|
|
t.Errorf("test %d:\ninput:\n %s\n wrong config, want:\n %v\ngot:\n %v",
|
|
i, test.in, test.cfg, cfg)
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
var configTestsInvalid = []string{
|
|
"sftp://host:dir",
|
|
}
|
|
|
|
func TestParseConfigInvalid(t *testing.T) {
|
|
for i, test := range configTestsInvalid {
|
|
_, err := ParseConfig(test)
|
|
if err == nil {
|
|
t.Errorf("test %d: invalid config %s did not return an error", i, test)
|
|
continue
|
|
}
|
|
}
|
|
}
|