mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
146 lines
4.1 KiB
JavaScript
146 lines
4.1 KiB
JavaScript
/**
|
|
Output test routines for HackMyResume.
|
|
@module test-stdout.js
|
|
*/
|
|
|
|
|
|
|
|
var chai = require('chai')
|
|
, expect = chai.expect
|
|
, HMRMAIN = require('../dist/cli/main')
|
|
, CHALK = require('chalk')
|
|
, FS = require('fs')
|
|
, PATH = require('path')
|
|
, PKG = require('../package.json')
|
|
, STRIPCOLOR = require('stripcolorcodes')
|
|
, _ = require('underscore');
|
|
|
|
|
|
|
|
var gather = '';
|
|
var ConsoleLogOrg = console.log;
|
|
var ProcessExitOrg = process.exit;
|
|
|
|
|
|
|
|
describe('Testing Ouput interface', function () {
|
|
|
|
// TODO: use sinon
|
|
// Replacement for console.log
|
|
function MyConsoleLog( msg ) {
|
|
var tx = Array.prototype.slice.call(arguments).join(' ');
|
|
gather += STRIPCOLOR( tx );
|
|
ConsoleLogOrg.apply(this, arguments);
|
|
}
|
|
|
|
// Replacement for process.exit()
|
|
function MyProcessExit() {
|
|
|
|
}
|
|
|
|
// HackMyResume CLI stub. Handle a single HMR invocation.
|
|
function HackMyResumeStub( args ) {
|
|
|
|
console.log = MyConsoleLog;
|
|
process.exit = MyProcessExit;
|
|
CHALK.enabled = false;
|
|
|
|
try {
|
|
args.unshift( process.argv[1] );
|
|
args.unshift( process.argv[0] );
|
|
HMRMAIN( args );
|
|
}
|
|
catch( ex ) {
|
|
require('../dist/cli/error').err( ex, false );
|
|
}
|
|
CHALK.enabled = true;
|
|
process.exit = ProcessExitOrg;
|
|
console.log = ConsoleLogOrg;
|
|
|
|
}
|
|
|
|
// Run a test through the stub, gathering console.log output into "gather"
|
|
// and testing against it.
|
|
function run( title, args, tests ) {
|
|
it( title, function() {
|
|
|
|
gather = '';
|
|
HackMyResumeStub( args );
|
|
|
|
expect(
|
|
_.all( tests, function(t) {
|
|
return gather.indexOf(t) > -1;
|
|
})
|
|
).to.equal(true);
|
|
|
|
});
|
|
}
|
|
|
|
var title = '*** HackMyResume v' + PKG.version + ' ***';
|
|
var feedMe = 'Please feed me a resume in FRESH or JSON Resume format.';
|
|
var manPage = FS.readFileSync( PATH.resolve( __dirname, '../src/cli/use.txt' ), 'utf8');
|
|
|
|
run('HMR should output a help string when no command is specified',
|
|
[], [ title, 'Please give me a command (BUILD, ANALYZE, VALIDATE, CONVERT, NEW, or PEEK).' ]);
|
|
|
|
run('BUILD should output a tip when no source is specified',
|
|
['build'], [ title, feedMe ]);
|
|
|
|
run('VALIDATE should output a tip when no source is specified',
|
|
['validate'], [ title, feedMe ]);
|
|
|
|
run('ANALYZE should output a tip when no source is specified',
|
|
['analyze'], [ title, feedMe ]);
|
|
|
|
run('BUILD should display an error on a broken resume',
|
|
['build',
|
|
'node_modules/fresh-test-resumes/src/fresh/johnny-trouble.broken.json',
|
|
'-t', 'modern'
|
|
], [ title, 'Error: Invalid or corrupt JSON on line' ]);
|
|
|
|
run('CONVERT should output a tip when no source is specified',
|
|
['convert'], [ title, feedMe ]);
|
|
|
|
run('NEW should output a tip when no source is specified',
|
|
['new'], [ title, 'Please specify the filename of the resume to create.' ]);
|
|
|
|
// This will cause the HELP doc to be emitted, followed by an "unknown option --help"
|
|
// error in the log, based on the way we're calling into HMR. As long as the test
|
|
// passes, any extraneous error messages can be ignored here.
|
|
run('HMR should output help doc with --help',
|
|
['--help'], [ manPage ]);
|
|
|
|
run('HMR should accept raw JSON via --options',
|
|
[
|
|
'build',
|
|
'node_modules/fresh-test-resumes/src/fresh/jane-fullstacker.json',
|
|
'to',
|
|
'test/sandbox/temp/janeq-1.all',
|
|
'-o',
|
|
"{ theme: 'compact', debug: true, pdf: 'wkhtmltopdf' }"],
|
|
[ 'Applying COMPACT theme (', '(with wkhtmltopdf)'] );
|
|
|
|
run('HMR should accept a JSON settings file via --options',
|
|
[
|
|
'build',
|
|
'node_modules/fresh-test-resumes/src/fresh/jane-fullstacker.json',
|
|
'to',
|
|
'test/sandbox/temp/janeq-2.all',
|
|
'--options',
|
|
"test/hmr-options.json"],
|
|
[ 'Applying POSITIVE theme'] );
|
|
|
|
run('Explicit command line options should override --options',
|
|
[
|
|
'build',
|
|
'node_modules/fresh-test-resumes/src/fresh/jane-fullstacker.json',
|
|
'to',
|
|
'test/sandbox/temp/janeq-3.all',
|
|
'--options',
|
|
"test/hmr-options.json",
|
|
"-t",
|
|
"modern"
|
|
],
|
|
[ 'Applying MODERN theme'] );
|
|
});
|