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

Add util tests #5

Merged
merged 3 commits into from
May 30, 2014
Merged
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
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
language: node_js
node_js:
- "0.10"
- "0.8"
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"devDependencies": {
"glob": "~3.2.9",
"mocha": "~1.18.2",
"jshint": "~2.4.4"
"jshint": "~2.4.4",
"chai": "~1.9.1"
}
}
2 changes: 2 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
Publish files to a `gh-pages` branch on GitHub (or any other branch anywhere else).

This will evolve into a more useful package. For now, it's just some extracted bits from the [`grunt-gh-pages`](https://www.npmjs.org/package/grunt-gh-pages) package.

[![Current Status](https://secure.travis-ci.org/tschaub/gh-pages.png?branch=master)](https://travis-ci.org/tschaub/gh-pages)
12 changes: 12 additions & 0 deletions test/helper.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
var chai = require('chai');


/** @type {boolean} */
chai.config.includeStack = true;


/**
* Chai's assert function configured to include stacks on failure.
* @type {function}
*/
exports.assert = chai.assert;
97 changes: 97 additions & 0 deletions test/lib/util.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
var path = require('path');

var assert = require('../helper').assert;

var util = require('../../lib/util');

describe('util', function() {

var files;
beforeEach(function() {
files = [
path.join('a1', 'b1', 'c2', 'd2.txt'),
path.join('a1', 'b2', 'c2', 'd1.txt'),
path.join('a2.txt'),
path.join('a1', 'b1', 'c1', 'd1.txt'),
path.join('a1', 'b1', 'c2', 'd1.txt'),
path.join('a1', 'b1.txt'),
path.join('a2', 'b1', 'c2.txt'),
path.join('a1', 'b1', 'c2', 'd3.txt'),
path.join('a1', 'b2', 'c1', 'd1.txt'),
path.join('a1.txt'),
path.join('a2', 'b1', 'c1.txt'),
path.join('a2', 'b1.txt')
].slice();
});

describe('byShortPath', function() {
it('sorts an array of filepaths, shortest first', function() {
files.sort(util.byShortPath);

var expected = [
path.join('a1.txt'),
path.join('a2.txt'),
path.join('a1', 'b1.txt'),
path.join('a2', 'b1.txt'),
path.join('a2', 'b1', 'c1.txt'),
path.join('a2', 'b1', 'c2.txt'),
path.join('a1', 'b1', 'c1', 'd1.txt'),
path.join('a1', 'b1', 'c2', 'd1.txt'),
path.join('a1', 'b1', 'c2', 'd2.txt'),
path.join('a1', 'b1', 'c2', 'd3.txt'),
path.join('a1', 'b2', 'c1', 'd1.txt'),
path.join('a1', 'b2', 'c2', 'd1.txt')
];

assert.deepEqual(files, expected);
});
});

describe('uniqueDirs', function() {

it('gets a list of unique directory paths', function() {
// not comparing order here, so we sort both
var got = util.uniqueDirs(files).sort();

var expected = [
'.',
'a1',
'a2',
path.join('a1', 'b1'),
path.join('a1', 'b1', 'c1'),
path.join('a1', 'b1', 'c2'),
path.join('a1', 'b2'),
path.join('a1', 'b2', 'c1'),
path.join('a1', 'b2', 'c2'),
path.join('a2', 'b1')
].sort();

assert.deepEqual(got, expected);
});

});

describe('dirsToCreate', function() {

it('gets a sorted list of directories to create', function() {
var got = util.dirsToCreate(files);

var expected = [
'.',
'a1',
'a2',
path.join('a1', 'b1'),
path.join('a1', 'b2'),
path.join('a2', 'b1'),
path.join('a1', 'b1', 'c1'),
path.join('a1', 'b1', 'c2'),
path.join('a1', 'b2', 'c1'),
path.join('a1', 'b2', 'c2')
];

assert.deepEqual(got, expected);
});

});

});