mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
69 lines
2.4 KiB
JavaScript
69 lines
2.4 KiB
JavaScript
|
|
var SPAWNWATCHER = require('../src/core/spawn-watch')
|
|
, chai = require('chai')
|
|
, expect = chai.expect
|
|
, should = chai.should()
|
|
, path = require('path')
|
|
, _ = require('underscore')
|
|
, FRESHResume = require('../src/core/fresh-resume')
|
|
, FCMD = require( '../src/hackmycmd')
|
|
, validator = require('is-my-json-valid')
|
|
, COLORS = require('colors');
|
|
|
|
chai.config.includeStack = false;
|
|
|
|
function genThemes( title, src, fmt ) {
|
|
|
|
describe('Testing themes against ' + title.toUpperCase() + ' resume ' + '(' + fmt + ')' , function () {
|
|
|
|
var _sheet;
|
|
|
|
COLORS.setTheme({
|
|
title: ['white','bold'],
|
|
info: process.platform === 'win32' ? 'gray' : ['white','dim'],
|
|
infoBold: ['white','dim'],
|
|
warn: 'yellow',
|
|
error: 'red',
|
|
guide: 'yellow',
|
|
status: 'gray',//['white','dim'],
|
|
useful: 'green',
|
|
});
|
|
|
|
function genTheme( fmt, src, themeName, themeLoc, testTitle ) {
|
|
themeLoc = themeLoc || themeName;
|
|
testTitle = themeName.toUpperCase() + ' theme (' + fmt + ') should generate without throwing an exception';
|
|
it( testTitle, function () {
|
|
function tryOpen() {
|
|
//var src = ['node_modules/jane-q-fullstacker/resume/jane-resume.json'];
|
|
var dst = ['test/sandbox/' + fmt + '/' + title + '/' + themeName + '/resume.all'];
|
|
var opts = {
|
|
theme: themeLoc,
|
|
format: fmt,
|
|
prettify: true,
|
|
silent: true
|
|
};
|
|
FCMD.verbs.build( src, dst, opts, function() {} );
|
|
}
|
|
tryOpen.should.not.Throw();
|
|
});
|
|
}
|
|
|
|
genTheme(fmt, src, 'hello-world');
|
|
genTheme(fmt, src, 'compact');
|
|
genTheme(fmt, src, 'modern');
|
|
genTheme(fmt, src, 'minimist');
|
|
genTheme(fmt, src, 'awesome');
|
|
genTheme(fmt, src, 'positive');
|
|
genTheme(fmt, src, 'jsonresume-theme-boilerplate', 'node_modules/jsonresume-theme-boilerplate' );
|
|
genTheme(fmt, src, 'jsonresume-theme-sceptile', 'node_modules/jsonresume-theme-sceptile' );
|
|
genTheme(fmt, src, 'jsonresume-theme-modern', 'node_modules/jsonresume-theme-modern' );
|
|
genTheme(fmt, src, 'jsonresume-theme-classy', 'node_modules/jsonresume-theme-classy' );
|
|
|
|
});
|
|
|
|
}
|
|
|
|
genThemes( 'jane-q-fullstacker', ['node_modules/jane-q-fullstacker/resume/jane-resume.json'], 'FRESH' );
|
|
genThemes( 'johnny-trouble', ['node_modules/johnny-trouble-resume/src/johnny-trouble.fresh.json'], 'FRESH' );
|
|
genThemes( 'richard-hendriks', ['test/resumes/jrs-0.0.0/richard-hendriks.json'], 'JRS' );
|