forked from shelljs/shelljs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.js
More file actions
131 lines (108 loc) · 2.8 KB
/
test.js
File metadata and controls
131 lines (108 loc) · 2.8 KB
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
import test from 'ava';
import shell from '..';
import utils from './utils/utils';
shell.config.silent = true;
//
// Invalids
//
test('no expression given', t => {
shell.test();
t.truthy(shell.error());
});
test('bad expression', t => {
shell.test('asdf');
t.truthy(shell.error());
});
test('bad expression #2', t => {
shell.test('f', 'resources/file1');
t.truthy(shell.error());
});
test('no file', t => {
shell.test('-f');
t.truthy(shell.error());
});
//
// Valids
//
test('-e option succeeds for files', t => {
const result = shell.test('-e', 'resources/file1');
t.falsy(shell.error());
t.truthy(result);
});
test('-e option fails if it does not exist', t => {
const result = shell.test('-e', 'resources/404');
t.falsy(shell.error());
t.falsy(result);
});
test('-d option succeeds for a directory', t => {
const result = shell.test('-d', 'resources');
t.falsy(shell.error());
t.truthy(result);
});
test('-f option fails for a directory', t => {
const result = shell.test('-f', 'resources');
t.falsy(shell.error());
t.falsy(result);
});
test('-L option fails for a directory', t => {
const result = shell.test('-L', 'resources');
t.falsy(shell.error());
t.falsy(result);
});
test('-d option fails for a file', t => {
const result = shell.test('-d', 'resources/file1');
t.falsy(shell.error());
t.falsy(result);
});
test('-f option succeeds for a file', t => {
const result = shell.test('-f', 'resources/file1');
t.falsy(shell.error());
t.truthy(result);
});
test('-L option fails for a file', t => {
const result = shell.test('-L', 'resources/file1');
t.falsy(shell.error());
t.falsy(result);
});
test('test command is not globbed', t => {
// regression #529
const result = shell.test('-f', 'resources/**/*.js');
t.falsy(shell.error());
t.falsy(result);
});
// TODO(nate): figure out a way to test links on Windows
test('-d option fails for a link', t => {
utils.skipOnWin(t, () => {
const result = shell.test('-d', 'resources/link');
t.falsy(shell.error());
t.falsy(result);
});
});
test('-f option succeeds for a link', t => {
utils.skipOnWin(t, () => {
const result = shell.test('-f', 'resources/link');
t.falsy(shell.error());
t.truthy(result);
});
});
test('-L option succeeds for a symlink', t => {
utils.skipOnWin(t, () => {
const result = shell.test('-L', 'resources/link');
t.falsy(shell.error());
t.truthy(result);
});
});
test('-L option works for broken symlinks', t => {
utils.skipOnWin(t, () => {
const result = shell.test('-L', 'resources/badlink');
t.falsy(shell.error());
t.truthy(result);
});
});
test('-L option fails for missing files', t => {
utils.skipOnWin(t, () => {
const result = shell.test('-L', 'resources/404');
t.falsy(shell.error());
t.falsy(result);
});
});