This repository has been archived by the owner on Feb 8, 2025. It is now read-only.
forked from dutchcoders/goftp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathftp_test.go
260 lines (225 loc) · 5.32 KB
/
ftp_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
package goftp
import (
"fmt"
"os"
"testing"
)
var goodServer string
var uglyServer string
var badServer string
func init() {
//ProFTPD 1.3.5 Server (Debian)
//goodServer = "bo.mirror.garr.it:21"
goodServer = "ftp.fu-berlin.de:21"
//Symantec EMEA FTP Server
badServer = "ftp.packardbell.com:21"
//Unknown server
uglyServer = "ftp.musicbrainz.org:21"
}
func active(host string) (msg string) {
var err error
var connection *FTP
if testing.Verbose() {
fmt.Println("Testing active command on -> " + host)
}
if connection, err = Connect(host); err != nil {
return "Can't connect ->" + err.Error()
}
if err = connection.Login("anonymous", "anonymous"); err != nil {
return "Can't login ->" + err.Error()
}
code, response := connection.RawPassiveCmd("LIST .")
if code < 0 || code > 299 {
return fmt.Sprintf("Can't list -> %d", code)
}
if testing.Verbose() {
fmt.Println(fmt.Println(response))
}
connection.Close()
return ""
}
func standard(host string) (msg string) {
var err error
var connection *FTP
if testing.Verbose() {
fmt.Println("Testing standard (passive) command on -> " + host)
}
if connection, err = Connect(host); err != nil {
return "Can't connect ->" + err.Error()
}
if err = connection.Login("anonymous", "anonymous"); err != nil {
return "Can't login ->" + err.Error()
}
code, str := connection.RawCmd("FEAT")
if code < 0 || code > 299 {
return fmt.Sprintf("Can't FEAT -> %d", code)
}
if testing.Verbose() {
fmt.Println(str)
}
connection.Close()
return ""
}
func walk(host string) (msg string) {
var err error
var connection *FTP
deep := 2
filehit := 0
if testing.Verbose() {
fmt.Println("Testing walk on -> " + host)
}
if connection, err = Connect(host); err != nil {
return "Can't connect ->" + err.Error()
}
if err = connection.Login("anonymous", "anonymous"); err != nil {
return "Can't login ->" + err.Error()
}
err = connection.Walk("/", func(path string, info os.FileMode, err error) error {
filehit = filehit + 1
if testing.Verbose() {
fmt.Print("--->")
fmt.Println(path)
}
return nil
}, deep)
//if err != nil && !strings.HasPrefix(err.Error(), "550") {
if err != nil {
return "Can't walk " + host + " ->" + err.Error()
}
if filehit < 1 {
return "Can't walk " + host + " -> No file found"
}
connection.Close()
return ""
}
func TestLogin_good(t *testing.T) {
str := standard(goodServer)
if len(str) > 0 {
t.Error(str)
}
}
func TestLogin_bad(t *testing.T) {
str := standard(badServer)
if len(str) > 0 {
t.Error(str)
}
}
func TestLogin_ugly(t *testing.T) {
str := standard(uglyServer)
if len(str) > 0 {
t.Error(str)
}
}
//
func TestWalk_good(t *testing.T) {
str := walk(goodServer)
if len(str) > 0 {
t.Error(str)
}
}
func TestWalk_bad(t *testing.T) {
str := walk(badServer)
if len(str) > 0 {
t.Error(str)
}
}
func TestWalk_ugly(t *testing.T) {
str := walk(uglyServer)
if len(str) > 0 {
t.Error(str)
}
}
func TestActiveCommand(t *testing.T) {
str := active(goodServer)
if len(str) > 0 {
t.Error(str)
}
}
func TestGetFilesListOnGoodServer(t *testing.T) {
var err error
var connection *FTP
host := uglyServer
if testing.Verbose() {
fmt.Println("Testing file list parsing on -> " + host)
}
if connection, err = Connect(host); err != nil {
t.Error("Can't connect ->" + err.Error())
}
if err = connection.Login("anonymous", "anonymous"); err != nil {
t.Error("Can't login ->" + err.Error())
}
files, dirs, links, err := connection.GetFilesList("")
if err != nil {
t.Error("Can't parse file list ->" + err.Error())
}
if testing.Verbose() {
fmt.Println(files)
fmt.Println("---")
fmt.Println(dirs)
fmt.Println("---")
fmt.Println(links)
}
connection.Close()
}
type getCodeResult struct {
code int
beginMultiline bool
err error
}
func TestGetCode(t *testing.T) {
var tests = []struct {
input string
want getCodeResult
}{
{"220 test", getCodeResult{220, false, nil}},
{"220 test", getCodeResult{220, false, nil}},
{" 220 test", getCodeResult{220, false, nil}},
{"220- test", getCodeResult{220, true, nil}},
{"220asdf test", getCodeResult{0, false, errNoCode}},
{"", getCodeResult{0, false, errNoCode}},
{"\r\n", getCodeResult{0, false, errNoCode}},
{"123-Firstline", getCodeResult{123, true, nil}},
{"123-First line", getCodeResult{123, true, nil}},
}
ftp := &FTP{}
if testing.Verbose() {
fmt.Println("Testing getCodeResult")
}
for _, test := range tests {
code, beginMultiline, err := ftp.getCode(test.input)
res := getCodeResult{code, beginMultiline, err}
if res != test.want {
t.Errorf("want: %#v, expected: %#v", test.want, res)
}
}
}
func TestHasCode(t *testing.T) {
var tests = []struct {
input string
code int
want bool
}{
{"220 test", 220, true},
{"220 test", 220, true},
{" 220 test", 220, true},
{"220- test", 220, true},
{"123-Firstline", 123, true},
{"123-First line", 123, true},
{"220asdf test", 220, false},
{"", 220, false},
{"\r\n", 220, false},
{"220 test", 550, false},
{"220 test", 550, false},
}
ftp := &FTP{}
if testing.Verbose() {
fmt.Println("Testing hasCode")
}
for _, test := range tests {
hasCode := ftp.HasCode(test.input, test.code)
if hasCode != test.want {
t.Errorf("input %q, code: %d, want: %#v, expected: %#v", test.input,
test.code, test.want, hasCode)
}
}
}