Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
istanbul /
lib /
report /
Delete
Unzip
Name
Size
Permission
Date
Action
common
[ DIR ]
drwxr-xr-x
2024-07-09 21:58
templates
[ DIR ]
drwxr-xr-x
2024-07-09 21:58
clover.js
7.58
KB
-rw-r--r--
2023-08-21 05:40
cobertura.js
7.15
KB
-rw-r--r--
2023-08-21 05:40
html.js
21.67
KB
-rw-r--r--
2023-08-21 05:40
index.js
3.29
KB
-rw-r--r--
2023-08-21 05:40
json-summary.js
2.51
KB
-rw-r--r--
2023-08-21 05:40
json.js
2.09
KB
-rw-r--r--
2023-08-21 05:40
lcov.js
2.05
KB
-rw-r--r--
2023-08-21 05:40
lcovonly.js
3.42
KB
-rw-r--r--
2023-08-21 05:40
none.js
895
B
-rw-r--r--
2023-08-21 05:40
teamcity.js
3.01
KB
-rw-r--r--
2023-08-21 05:40
text-lcov.js
1.08
KB
-rw-r--r--
2023-08-21 05:40
text-summary.js
3.23
KB
-rw-r--r--
2023-08-21 05:40
text.js
6.89
KB
-rw-r--r--
2023-08-21 05:40
Save
Rename
/* Copyright (c) 2012, Yahoo! Inc. All rights reserved. Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. */ var path = require('path'), Writer = require('../util/file-writer'), util = require('util'), Report = require('./index'), utils = require('../object-utils'); /** * a `Report` implementation that produces an LCOV coverage file from coverage objects. * * Usage * ----- * * var report = require('istanbul').Report.create('lcovonly'); * * * @class LcovOnlyReport * @extends Report * @module report * @constructor * @param {Object} opts optional * @param {String} [opts.dir] the directory in which to the `lcov.info` file. Defaults to `process.cwd()` */ function LcovOnlyReport(opts) { this.opts = opts || {}; this.opts.dir = this.opts.dir || process.cwd(); this.opts.file = this.opts.file || this.getDefaultConfig().file; this.opts.writer = this.opts.writer || null; } LcovOnlyReport.TYPE = 'lcovonly'; util.inherits(LcovOnlyReport, Report); Report.mix(LcovOnlyReport, { synopsis: function () { return 'lcov coverage report that can be consumed by the lcov tool'; }, getDefaultConfig: function () { return { file: 'lcov.info' }; }, writeFileCoverage: function (writer, fc) { var functions = fc.f, functionMap = fc.fnMap, lines = fc.l, branches = fc.b, branchMap = fc.branchMap, summary = utils.summarizeFileCoverage(fc); writer.println('TN:'); //no test name writer.println('SF:' + fc.path); Object.keys(functions).forEach(function (key) { var meta = functionMap[key]; writer.println('FN:' + [ meta.line, meta.name ].join(',')); }); writer.println('FNF:' + summary.functions.total); writer.println('FNH:' + summary.functions.covered); Object.keys(functions).forEach(function (key) { var stats = functions[key], meta = functionMap[key]; writer.println('FNDA:' + [ stats, meta.name ].join(',')); }); Object.keys(lines).forEach(function (key) { var stat = lines[key]; writer.println('DA:' + [ key, stat ].join(',')); }); writer.println('LF:' + summary.lines.total); writer.println('LH:' + summary.lines.covered); Object.keys(branches).forEach(function (key) { var branchArray = branches[key], meta = branchMap[key], line = meta.line, i = 0; branchArray.forEach(function (b) { writer.println('BRDA:' + [line, key, i, b].join(',')); i += 1; }); }); writer.println('BRF:' + summary.branches.total); writer.println('BRH:' + summary.branches.covered); writer.println('end_of_record'); }, writeReport: function (collector, sync) { var outputFile = path.resolve(this.opts.dir, this.opts.file), writer = this.opts.writer || new Writer(sync), that = this; writer.on('done', function () { that.emit('done'); }); writer.writeFile(outputFile, function (contentWriter) { collector.files().forEach(function (key) { that.writeFileCoverage(contentWriter, collector.fileCoverageFor(key)); }); }); writer.done(); } }); module.exports = LcovOnlyReport;