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
| var Parser = require('../lib/parser'),
| parseListEntry = Parser.parseListEntry;
|
| var path = require('path'),
| assert = require('assert'),
| inspect = require('util').inspect;
|
| var group = path.basename(__filename, '.js') + '/';
|
| [
| { source: 'drwxr-xr-x 10 root root 4096 Dec 21 2012 usr',
| expected: {
| type: 'd',
| name: 'usr',
| target: undefined,
| sticky: false,
| rights: { user: 'rwx', group: 'rx', other: 'rx' },
| acl: false,
| owner: 'root',
| group: 'root',
| size: 4096,
| date: new Date('2012-12-21T00:00')
| },
| what: 'Normal directory'
| },
| { source: 'drwxrwxrwx 1 owner group 0 Aug 31 2012 e-books',
| expected: {
| type: 'd',
| name: 'e-books',
| target: undefined,
| sticky: false,
| rights: { user: 'rwx', group: 'rwx', other: 'rwx' },
| acl: false,
| owner: 'owner',
| group: 'group',
| size: 0,
| date: new Date('2012-08-31T00:00')
| },
| what: 'Normal directory #2'
| },
| { source: '-rw-rw-rw- 1 owner group 7045120 Sep 02 2012 music.mp3',
| expected: {
| type: '-',
| name: 'music.mp3',
| target: undefined,
| sticky: false,
| rights: { user: 'rw', group: 'rw', other: 'rw' },
| acl: false,
| owner: 'owner',
| group: 'group',
| size: 7045120,
| date: new Date('2012-09-02T00:00')
| },
| what: 'Normal file'
| },
| { source: '-rw-rw-rw-+ 1 owner group 7045120 Sep 02 2012 music.mp3',
| expected: {
| type: '-',
| name: 'music.mp3',
| target: undefined,
| sticky: false,
| rights: { user: 'rw', group: 'rw', other: 'rw' },
| acl: true,
| owner: 'owner',
| group: 'group',
| size: 7045120,
| date: new Date('2012-09-02T00:00')
| },
| what: 'File with ACL set'
| },
| { source: 'drwxrwxrwt 7 root root 4096 May 19 2012 tmp',
| expected: {
| type: 'd',
| name: 'tmp',
| target: undefined,
| sticky: true,
| rights: { user: 'rwx', group: 'rwx', other: 'rwx' },
| acl: false,
| owner: 'root',
| group: 'root',
| size: 4096,
| date: new Date('2012-05-19T00:00')
| },
| what: 'Directory with sticky bit and executable for others'
| },
| { source: 'drwxrwx--t 7 root root 4096 May 19 2012 tmp',
| expected: {
| type: 'd',
| name: 'tmp',
| target: undefined,
| sticky: true,
| rights: { user: 'rwx', group: 'rwx', other: 'x' },
| acl: false,
| owner: 'root',
| group: 'root',
| size: 4096,
| date: new Date('2012-05-19T00:00')
| },
| what: 'Directory with sticky bit and executable for others #2'
| },
| { source: 'drwxrwxrwT 7 root root 4096 May 19 2012 tmp',
| expected: {
| type: 'd',
| name: 'tmp',
| target: undefined,
| sticky: true,
| rights: { user: 'rwx', group: 'rwx', other: 'rw' },
| acl: false,
| owner: 'root',
| group: 'root',
| size: 4096,
| date: new Date('2012-05-19T00:00')
| },
| what: 'Directory with sticky bit and not executable for others'
| },
| { source: 'drwxrwx--T 7 root root 4096 May 19 2012 tmp',
| expected: {
| type: 'd',
| name: 'tmp',
| target: undefined,
| sticky: true,
| rights: { user: 'rwx', group: 'rwx', other: '' },
| acl: false,
| owner: 'root',
| group: 'root',
| size: 4096,
| date: new Date('2012-05-19T00:00')
| },
| what: 'Directory with sticky bit and not executable for others #2'
| },
| { source: 'total 871',
| expected: null,
| what: 'Ignored line'
| },
| ].forEach(function(v) {
| var result = parseListEntry(v.source),
| msg = '[' + group + v.what + ']: parsed output mismatch.\n'
| + 'Saw: ' + inspect(result) + '\n'
| + 'Expected: ' + inspect(v.expected);
| assert.deepEqual(result, v.expected, msg);
| });
|
|