-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace fs.accessSync call to fs.statSync
fs.accessSync does not exist in Node 0.10.x.
- Loading branch information
1 parent
dc89fea
commit efedde8
Showing
3 changed files
with
167 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
'use strict' | ||
|
||
if (process.platform === 'win32') { | ||
return | ||
} | ||
|
||
var test = require('tape') | ||
var requireInject = require('require-inject') | ||
var configure = requireInject('../lib/configure', { | ||
'graceful-fs': { | ||
'statSync': function (path) { | ||
var stats = files[path] | ||
if (stats !== undefined) { | ||
return stats | ||
} else { | ||
var error = new Error('ENOENT - not found') | ||
throw error | ||
} | ||
} | ||
} | ||
}) | ||
|
||
var owner_uid = process.getuid() | ||
var other_uid = owner_uid+1 | ||
var owner_groups = process.getgroups() | ||
// One of the groups the current user is a member of | ||
var owner_group = owner_groups[Math.floor(Math.random()*owner_groups.length)] | ||
// A group the user is not a member of | ||
var others_group = owner_group | ||
do { | ||
others_group++ | ||
} while (owner_groups.some(function (val) { return val === others_group } )) | ||
var dir = '/testdir' | ||
var files = { | ||
'/testdir/owner_readable': { mode: parseInt('0400',8), uid: owner_uid, | ||
gid: owner_group }, | ||
'/testdir/group_readable': { mode: parseInt('0640',8), uid: other_uid, | ||
gid: owner_group }, | ||
'/testdir/others_readable': { mode: parseInt('0604',8), uid: other_uid, | ||
gid: others_group }, | ||
'/testdir/not_in_group': { mode: parseInt('0640',8), uid: other_uid, | ||
gid: others_group }, | ||
} | ||
|
||
test('find accessible - empty array', function (t) { | ||
t.plan(1) | ||
|
||
var candidates = [] | ||
var found = configure.test.findAccessibleSync('test', dir, candidates) | ||
t.strictEqual(found, undefined) | ||
}) | ||
|
||
test('find accessible - single item array, file owner readable', function (t) { | ||
t.plan(1) | ||
|
||
var candidates = [ 'owner_readable' ] | ||
var found = configure.test.findAccessibleSync('test', dir, candidates) | ||
t.strictEqual(found, '/testdir/owner_readable') | ||
}) | ||
|
||
test('find accessible - single item array, file group readable', function (t) { | ||
t.plan(1) | ||
|
||
var candidates = [ 'group_readable' ] | ||
var found = configure.test.findAccessibleSync('test', dir, candidates) | ||
t.strictEqual(found, '/testdir/group_readable') | ||
}) | ||
|
||
test('find accessible - single item array, file others readable', function (t) { | ||
t.plan(1) | ||
|
||
var candidates = [ 'others_readable' ] | ||
var found = configure.test.findAccessibleSync('test', dir, candidates) | ||
t.strictEqual(found, '/testdir/others_readable') | ||
}) | ||
|
||
test('find accessible - single item array, file group unreadable', function (t) { | ||
t.plan(1) | ||
|
||
var candidates = [ 'not_in_group' ] | ||
var found = configure.test.findAccessibleSync('test', dir, candidates) | ||
t.strictEqual(found, undefined) | ||
}) | ||
|
||
|
||
test('find accessible - multi item array, no matches', function (t) { | ||
t.plan(1) | ||
|
||
var candidates = [ 'non_existent_file', 'not_in_group' ] | ||
var found = configure.test.findAccessibleSync('test', dir, candidates) | ||
t.strictEqual(found, undefined) | ||
}) | ||
|
||
|
||
test('find accessible - multi item array, single match', function (t) { | ||
t.plan(1) | ||
|
||
var candidates = [ 'non_existent_file', 'owner_readable' ] | ||
var found = configure.test.findAccessibleSync('test', dir, candidates) | ||
t.strictEqual(found, '/testdir/owner_readable') | ||
}) | ||
|
||
test('find accessible - multi item array, return first match', function (t) { | ||
t.plan(1) | ||
|
||
var candidates = [ 'non_existent_file', 'group_readable', 'owner_readable' ] | ||
var found = configure.test.findAccessibleSync('test', dir, candidates) | ||
t.strictEqual(found, '/testdir/group_readable') | ||
}) |