/* Copyright 2012-2015, Yahoo Inc. Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. */ /*jshint maxlen: 300 */ var fs = require('fs'), path = require('path'), handlebars = require('handlebars').create(), annotator = require('./annotator'), helpers = require('./helpers'), templateFor = function (name) { return handlebars.compile(fs.readFileSync(path.resolve(__dirname, 'templates', name + '.txt'), 'utf8')); }, headerTemplate = templateFor('head'), footerTemplate = templateFor('foot'), detailTemplate = handlebars.compile([ '', '{{#show_lines}}{{maxLines}}{{/show_lines}}', '{{#show_line_execution_counts lineCoverage}}{{maxLines}}{{/show_line_execution_counts}}', '
{{#show_code annotatedCode}}{{/show_code}}
', '\n' ].join('')), summaryTableHeader = [ '
', '', '', '', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', '', '', '' ].join('\n'), summaryLineTemplate = handlebars.compile([ '', '', '', '', '', '', '', '', '', '', '', '\n' ].join('\n\t')), summaryTableFooter = [ '', '
FileStatementsBranchesFunctionsLines
{{file}}
{{#show_picture}}{{metrics.statements.pct}}{{/show_picture}}
{{metrics.statements.pct}}%{{metrics.statements.covered}}/{{metrics.statements.total}}{{metrics.branches.pct}}%{{metrics.branches.covered}}/{{metrics.branches.total}}{{metrics.functions.pct}}%{{metrics.functions.covered}}/{{metrics.functions.total}}{{metrics.lines.pct}}%{{metrics.lines.covered}}/{{metrics.lines.total}}
', '
' ].join('\n'); helpers.registerHelpers(handlebars); var standardLinkMapper = { getPath: function (node) { if (typeof node === 'string') { return node; } var filePath = node.getQualifiedName(); if (node.isSummary()) { if (filePath !== '') { filePath += "/index.html"; } else { filePath = "index.html"; } } else { filePath += ".html"; } return filePath; }, relativePath: function (source, target) { var targetPath = this.getPath(target), sourcePath = path.dirname(this.getPath(source)); return path.relative(sourcePath, targetPath); }, assetPath: function (node, name) { return this.relativePath(this.getPath(node), name); } }; function getBreadcrumbHtml(node, linkMapper) { var parent = node.getParent(), nodePath = [], linkPath; while (parent) { nodePath.push(parent); parent = parent.getParent(); } linkPath = nodePath.map(function (ancestor) { var target = linkMapper.relativePath(node, ancestor), name = ancestor.getRelativeName() || 'All files'; return '' + name + ''; }); linkPath.reverse(); return linkPath.length > 0 ? linkPath.join(' / ') + ' ' + node.getRelativeName() : 'All files'; } function fillTemplate(node, templateData, linkMapper, context) { var summary = node.getCoverageSummary(); templateData.entity = node.getQualifiedName() || 'All files'; templateData.metrics = summary; templateData.reportClass = context.classForPercent('statements', summary.statements.pct); templateData.pathHtml = getBreadcrumbHtml(node, linkMapper); templateData.base = { css: linkMapper.assetPath(node, 'base.css') }; templateData.sorter = { js: linkMapper.assetPath(node, 'sorter.js'), image: linkMapper.assetPath(node, 'sort-arrow-sprite.png') }; templateData.prettify = { js: linkMapper.assetPath(node, 'prettify.js'), css: linkMapper.assetPath(node, 'prettify.css') }; } function HtmlReport(opts) { this.verbose = opts.verbose; this.linkMapper = opts.linkMapper || standardLinkMapper; this.subdir = opts.subdir || ''; this.date = Date(); } HtmlReport.prototype.getTemplateData = function () { return { datetime: this.date }; }; HtmlReport.prototype.getWriter = function (context) { if (!this.subdir) { return context.writer; } return context.writer.writerForDir(this.subdir); }; HtmlReport.prototype.onStart = function (root, context) { var that = this, copyAssets = function (subdir, writer) { var srcDir = path.resolve(__dirname, 'assets', subdir); fs.readdirSync(srcDir).forEach(function (f) { var resolvedSource = path.resolve(srcDir, f), resolvedDestination = '.', stat = fs.statSync(resolvedSource), dest; if (stat.isFile()) { dest = resolvedDestination + '/' + f; if (this.verbose) { console.log('Write asset: ' + dest); } writer.copyFile(resolvedSource, dest); } }); }; ['.', 'vendor'].forEach(function (subdir) { copyAssets(subdir, that.getWriter(context)); }); }; HtmlReport.prototype.onSummary = function (node, context) { var linkMapper = this.linkMapper, templateData = this.getTemplateData(), children = node.getChildren(), cw; fillTemplate(node, templateData, linkMapper, context); cw = this.getWriter(context).writeFile(linkMapper.getPath(node)); cw.write(headerTemplate(templateData)); cw.write(summaryTableHeader); children.forEach(function (child) { var metrics = child.getCoverageSummary(), reportClasses = { statements: context.classForPercent('statements', metrics.statements.pct), lines: context.classForPercent('lines', metrics.lines.pct), functions: context.classForPercent('functions', metrics.functions.pct), branches: context.classForPercent('branches', metrics.branches.pct) }, data = { metrics: metrics, reportClasses: reportClasses, file: child.getRelativeName(), output: linkMapper.relativePath(node, child) }; cw.write(summaryLineTemplate(data) + '\n'); }); cw.write(summaryTableFooter); cw.write(footerTemplate(templateData)); cw.close(); }; HtmlReport.prototype.onDetail = function (node, context) { var linkMapper = this.linkMapper, templateData = this.getTemplateData(), cw; fillTemplate(node, templateData, linkMapper, context); cw = this.getWriter(context).writeFile(linkMapper.getPath(node)); cw.write(headerTemplate(templateData)); cw.write('
\n');
    cw.write(detailTemplate(annotator.annotateSourceCode(node.getFileCoverage(), context)));
    cw.write('
\n'); cw.write(footerTemplate(templateData)); cw.close(); }; module.exports = HtmlReport;