var output = (function () { var exports = {}; var fs = require('fs'); var path = require('path'); function mkdir_p(path) { // This works like mkdir -p in Unix. try { fs.mkdirSync(path); } catch (e) { if ( e.code !== 'EEXIST' ) { throw e; } } return path; } function make_output_dir() { mkdir_p('var'); var dir = mkdir_p('var/test-js-with-node'); return dir; } // TODO, move these actions with side effects to some kind // of init() function. var output_dir = make_output_dir(); var output_fn = path.join(output_dir, 'output.html'); var index_fn = path.join(output_dir, 'index.html'); exports.index_fn = index_fn; function stylesheets() { // TODO: Automatically get all relevant styles. // Note that we specifically do NOT use media.css here, // since we are focused on showing components in isolation. var data = ''; data += '\n'; data += '\n'; data += '\n'; data += '\n'; data += '\n'; data += '\n'; data += '\n'; data += '\n'; return data; } exports.start_writing = function () { var data = ''; data += stylesheets(); data += '\n'; data += '\n'; data += ''; data += '

Output of node unit tests

\n'; fs.writeFileSync(output_fn, data); data = ''; data += '\n'; data += '

Regular output

\n'; data += '

Any test can output HTML to be viewed here:

\n'; data += 'Output of non-template.js tests
'; data += '
\n'; data += '

Handlebar output

\n'; data += '

These are specifically from templates.js

\n'; fs.writeFileSync(index_fn, data); }; exports.write_test_output = function (label, output) { var data = ''; data += '
'; data += '

' + label + '

'; data += output; data += '\n'; fs.appendFileSync(output_fn, data); }; exports.write_handlebars_output = (function () { var last_label = ''; return function (label, output) { if (last_label && (last_label >= label)) { // This is kind of an odd requirement, but it allows us // to render output on the fly in alphabetical order, and // it has a nice side effect of making our source code // easier to scan. console.info(last_label); console.info(label); throw "Make sure your template tests are alphabetical in templates.js"; } last_label = label; var href = label + '.handlebars.html'; var fn = path.join(output_dir, href); // Update the index var a = '' + label + '
'; fs.appendFileSync(index_fn, a); // Write out own HTML file. var data = ''; data += stylesheets(); data += '\n'; data += ''; data += '' + href + '
\n'; data += output; fs.writeFileSync(fn, data); }; }()); exports.append_test_output = function (output) { fs.appendFileSync(output_fn, output); }; return exports; }()); module.exports = output;