You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
2.3 KiB
JavaScript

10 years ago
/*!
* parse-git-config <https://github.com/jonschlinkert/parse-git-config>
*
* Copyright (c) 2015 Jon Schlinkert.
* Licensed under the MIT license.
*/
'use strict';
require('mocha');
var assert = require('assert');
var path = require('path');
var home = require('os-homedir');
var parse = require('./');
9 years ago
describe('sync:', function() {
it('should return an object', function() {
assert(parse.sync().hasOwnProperty('core'));
10 years ago
});
});
9 years ago
describe('async:', function() {
it('should throw a callback is not passed:', function(cb) {
try {
parse();
cb(new Error('expected an error'));
} catch (err) {
assert.equal(err.message, 'parse-git-config async expects a callback function.');
cb();
}
});
it('should parse .git/config', function(cb) {
parse(function(err, config) {
assert(!err);
assert(config.hasOwnProperty('core'));
cb();
10 years ago
});
});
9 years ago
it('should throw an error when .git/config does not exist:', function(cb) {
parse({path: 'foo'}, function(err, config) {
assert(err instanceof Error);
assert(/ENOENT.*parse-git-config/.test(err.message));
cb();
10 years ago
});
});
});
9 years ago
describe('resolve:', function() {
it('should resolve the git config in the cwd by default', function() {
assert.equal(parse.resolve(), path.resolve(process.cwd(), '.git/config'));
});
9 years ago
it('should allow override path', function() {
var fp = path.resolve(home(), '.gitconfig');
assert.equal(parse.resolve({path: fp}), fp);
});
9 years ago
it('should resolve relative path to cwd', function() {
assert.equal(parse.resolve({path: '.config'}), path.resolve(process.cwd(), '.config'));
});
it('should resolve relative path to the global git config when `global` is passed', function() {
assert.equal(parse.resolve('global'), path.resolve(home(), '.gitconfig'));
});
9 years ago
it('should allow override of cwd', function() {
var actual = parse.resolve({path: '.config', cwd: '/opt/config'});
assert.equal(actual, path.resolve('/opt/config/.config'));
});
});
describe('.keys:', function() {
it('should parse ini-style keys', function() {
var config = {
'foo "bar"': { doStuff: true },
'foo "baz"': { doStuff: true }
};
assert.deepEqual(parse.keys(config), {
foo: {
bar: { doStuff: true },
baz: { doStuff: true }
}
});
});
});