Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle linux paths on windows. #16

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 9 additions & 12 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,9 @@ module.exports = function(glob, options) {
// default options
var opts = options || {};

// ensure cwd is absolute
var cwd = path.resolve(opts.cwd ? opts.cwd : process.cwd());
cwd = unixify(cwd);

var rootDir = opts.root;
// if `options.root` is defined, ensure it's absolute
if (rootDir) {
rootDir = unixify(rootDir);
if (process.platform === 'win32' || !isAbsolute(rootDir)) {
rootDir = unixify(path.resolve(rootDir));
}
}
// ensure provided paths are absolute
var cwd = ensureAbsolute(opts.cwd ? opts.cwd : process.cwd());
var rootDir = opts.root ? ensureAbsolute(opts.root) : undefined;

// trim starting ./ from glob patterns
if (glob.slice(0, 2) === './') {
Expand Down Expand Up @@ -54,6 +45,12 @@ module.exports = function(glob, options) {
return ing.negated ? '!' + glob : glob;
};

function ensureAbsolute(filepath) {
filepath = unixify(filepath);
var absoluteFilepath = isAbsolute(filepath) ? filepath : path.resolve(filepath);
return unixify(absoluteFilepath);
}

function unixify(filepath) {
return filepath.replace(/\\/g, '/');
}
Expand Down
21 changes: 13 additions & 8 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,34 +56,39 @@ describe('resolve', function () {
assert.equal(actual, unixify(path.resolve('.')) + '/\\!(foo)');
});

it('should make a glob absolute from a cwd', function () {
it('should make a glob absolute from a relative cwd', function () {
actual = resolve('a/*.js', {cwd: 'foo'});
assert.equal(actual, unixify(path.resolve('foo/a/*.js')));
});

it('should make a negative glob absolute from a cwd', function () {
it('should make a negative glob absolute from a relative cwd', function () {
actual = resolve('!a/*.js', {cwd: 'foo'});
assert.equal(actual, '!' + unixify(path.resolve('foo/a/*.js')));
});

it('should make a glob absolute from a root path', function () {
it('should make a glob absolute from an absolute cwd', function () {
actual = resolve('a/*.js', {cwd: '/foo'});
assert.equal(actual, unixify('/foo/a/*.js'));
});

it('should make a glob absolute from a relative root path', function () {
actual = resolve('/a/*.js', {root: 'foo'});
assert.equal(actual, unixify(path.resolve('foo/a/*.js')));
});

it('should make a glob absolute from a root slash', function () {
actual = resolve('/a/*.js', {root: '/'});
assert.equal(actual, unixify(path.resolve('/a/*.js')));
assert.equal(actual, unixify('/a/*.js'));
});

it('should make a glob absolute from a negative root path', function () {
it('should make a glob absolute from a negative relative root path', function () {
actual = resolve('!/a/*.js', {root: 'foo'});
assert.equal(actual, '!' + unixify(path.resolve('foo/a/*.js')));
});

it('should make a negative glob absolute from a negative root path', function () {
actual = resolve('!/a/*.js', {root: '/'})
assert.equal(actual, '!' + unixify(path.resolve('/a/*.js')));
assert.equal(actual, '!' + unixify('/a/*.js'));
});
});

Expand All @@ -93,14 +98,14 @@ describe('resolve', function () {
assert.equal(actual, unixify(path.resolve('foo/bar')) + '\\!(baz)');
});

it('should make a glob absolute from a root path', function () {
it('should make a glob absolute from a relative root path', function () {
actual = resolve('/a/*.js', {root: 'foo\\bar\\baz'});
assert.equal(actual, unixify(path.resolve('foo/bar/baz/a/*.js')));
});

it('should make a glob absolute from a root slash', function () {
actual = resolve('/a/*.js', {root: '\\'});
assert.equal(actual, unixify(path.resolve('/a/*.js')));
assert.equal(actual, unixify('/a/*.js'));
});
});
});