forked from krysalead/gulp-sftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clear.test.js
285 lines (218 loc) · 8.06 KB
/
clear.test.js
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
const {clearDirectory} = require('./clear');
const path = require('path');
/**
* Resolve a a subtree by filesystem-like path in an object tree
* @param {Object} vfs
* @param {string} entryPath
*/
function resolvePath(vfs, entryPath) {
if (entryPath === '/') {
return vfs;
}
const segments = entryPath.split(path.sep);
if (segments[0] === '') {
segments.shift()
}
return segments.reduce((tree, segment) => tree[segment], vfs);
}
describe('resolvePath', () => {
it('resolves root', () => {
const vfs = {};
expect(resolvePath(vfs, '/')).toBe(vfs);
})
it('returns undefined for missing entries', () => {
expect(resolvePath({}, '/test')).toBeUndefined();
})
it('resolves first level item', () => {
const vfs = { 'a': 'passed' };
expect(resolvePath(vfs, '/a')).toBe("passed");
})
it('resolves deep value', () => {
const vfs = { 'a': { 'b': { 'c': { 'd': "deep passed" }}}};
expect(resolvePath(vfs, '/a/b/c/d')).toBe("deep passed")
})
it('resolves relative paths', () => {
const vfs = { 'a': { 'b': "relative passed" }};
expect(resolvePath(vfs, 'a/b')).toBe("relative passed")
})
})
function mockSFTP(vfs) {
// The following samples are taken from a real FTP server
const dirLongName = 'drwxr-x--- 2 user www 13 Jul 23 00:59 tmp'
const fileLongName = '-rw-r----- 1 user www 760 Jul 23 00:59 main.css'
const deletions = []
return {
'readdir': jest.fn((path, callback) => {
const dirEntry = resolvePath(vfs, path);
try {
const ftpEntries = Object.keys(dirEntry)
.map((k) => [k, dirEntry[k]])
.map(([name, contents]) => ({
filename: name,
longname: contents instanceof Object ? dirLongName : fileLongName
}));
try { callback(null, ftpEntries); } catch (callbackFailure) { console.error(callbackFailure) }
} catch (e) {
callback(e);
}
}),
'unlink': jest.fn((filepath, callback) => {
const {dir, base} = path.parse(filepath);
const dirEntry = resolvePath(vfs, dir);
if (dirEntry[base] instanceof Object) {
callback(`Error: cannot unlink a directory: ${filepath}`)
} else if (dirEntry[base] === undefined) {
callback(`Error: file ${filepath} does not exist`)
} else {
delete dirEntry[base];
deletions.push(filepath);
callback();
}
}),
'rmdir': jest.fn((dirpath, callback) => {
const {dir, base} = path.parse(dirpath);
const parentDirEntry = resolvePath(vfs, dir);
if (parentDirEntry[base] instanceof Object) {
delete parentDirEntry[base];
deletions.push(dirpath);
callback();
} else {
callback(`Error: ${dirpath} is not a directory`)
}
}),
'deletions': deletions
}
}
describe('mockSFTP', () => {
let vfs;
let sftp;
let callback;
beforeEach(() => {
vfs = {
'dir1': [],
'dir2': {
'a.txt': null,
'b.txt': null
},
'file1.txt': null
};
sftp = mockSFTP(vfs);
callback = jest.fn();
})
describe('readdir', () => {
it('returns directory contents', () => {
sftp.readdir('/dir2', callback);
expect(callback).toBeCalled();
const [err, entries] = callback.mock.calls[0]
expect(err).toBeFalsy()
expect(entries.length).toBe(2);
expect(entries[0].filename).toBe('a.txt')
expect(entries[1].filename).toBe('b.txt')
})
it('returns file type attribute in longname', () => {
sftp.readdir('/', callback);
expect(callback).toBeCalled();
const [err, entries] = callback.mock.calls[0]
expect(err).toBeFalsy()
expect(entries.find((e) => e.filename === 'dir1').longname).toMatch(/^d/);
expect(entries.find((e) => e.filename === 'file1.txt').longname).toMatch(/^-/);
})
it("fail on non-directory", () => {
sftp.readdir('/file1.txt', callback);
expect(callback).toBeCalled();
var [err] = callback.mock.calls[0]
expect(err).toBeTruthy();
})
it("fail on non-existing directory", () => {
sftp.readdir('/non-existing-dir', callback);
expect(callback).toBeCalled();
const [err] = callback.mock.calls[0]
expect(err).toBeTruthy();
})
})
describe('unlink', () => {
it('deletes file', () => {
sftp.unlink('/file1.txt', callback);
expect(vfs['file1.txt']).toBeUndefined();
expect(callback).toBeCalled();
const [err] = callback.mock.calls[0]
expect(err).toBeFalsy();
})
it('records deletions in order', () => {
sftp.unlink('/dir2/a.txt', callback);
sftp.unlink('/dir2/b.txt', callback);
expect(sftp.deletions.length).toBe(2);
expect(sftp.deletions[0]).toBe('/dir2/a.txt');
expect(sftp.deletions[1]).toBe('/dir2/b.txt');
})
it('fails on directories', () => {
sftp.unlink('/dir1', callback);
expect(sftp.deletions.length).toBe(0)
expect(callback).toBeCalled();
const [err] = callback.mock.calls[0]
expect(err).toBeTruthy();
})
it('fails on non-existing files', () => {
sftp.unlink('/non-existing-file.txt', callback);
expect(sftp.deletions.length).toBe(0)
expect(callback).toBeCalled();
const [err] = callback.mock.calls[0]
expect(err).toBeTruthy();
})
})
describe('rmmdir', () => {
it('deletes empty directories', () => {
sftp.rmdir('/dir1', callback);
expect(sftp.deletions.length).toBe(1);
expect(sftp.deletions[0]).toBe('/dir1');
expect(callback).toBeCalled();
const [err] = callback.mock.calls[0]
expect(err).toBeFalsy();
})
it('fails on files', () => {
sftp.rmdir('/file1.txt', callback);
expect(sftp.deletions.length).toBe(0)
expect(callback).toBeCalled();
const [err] = callback.mock.calls[0]
expect(err).toBeTruthy();
})
it('fails on non-existing directories', () => {
sftp.rmdir('/non-existing-directory', callback);
expect(sftp.deletions.length).toBe(0)
expect(callback).toBeCalled();
const [err] = callback.mock.calls[0]
expect(err).toBeTruthy();
})
})
})
describe('clearDirectory', () => {
let callback;
beforeEach(() => {
callback = jest.fn();
})
it('keeps clearing destination root directory', () => {
const sftp = mockSFTP({ 'dir': {} })
clearDirectory(sftp, '/dir', callback);
expect(sftp.deletions.length).toBe(0);
expect(callback).toBeCalled();
const [err] = callback.mock.calls[0]
expect(err).toBeFalsy();
})
it('deletes contents before deleting a directory', () => {
const sftp = mockSFTP({
'dir': {
'file1.txt': null,
'file2.txt': null
}
})
clearDirectory(sftp, '/', callback);
expect(sftp.readdir).toBeCalled();
expect(callback).toBeCalled();
const [err] = callback.mock.calls[0]
expect(err).toBeFalsy();
expect(sftp.deletions.length).toBe(3);
expect(sftp.deletions[0]).toBe('/dir/file1.txt');
expect(sftp.deletions[1]).toBe('/dir/file2.txt');
expect(sftp.deletions[2]).toBe('/dir');
})
})