tscoverage/dist/npmts.tests.js

69 lines
2.6 KiB
JavaScript
Raw Normal View History

2016-03-12 09:21:16 +00:00
"use strict";
2016-05-25 03:23:48 +00:00
require("typings-global");
2016-02-19 23:53:23 +00:00
var plugins = require("./npmts.plugins");
var paths = require("./npmts.paths");
2016-05-17 00:32:40 +00:00
var npmts_promisechain_1 = require("./npmts.promisechain");
2016-03-29 23:32:41 +00:00
/**
*
* @returns {*}
*/
var istanbul = function (configArg) {
2016-05-21 17:41:18 +00:00
npmts_promisechain_1.npmtsOra.text("Instrumentalizing transpiled JS...");
2016-03-29 23:32:41 +00:00
var done = plugins.Q.defer();
var stream = plugins.gulp.src([plugins.path.join(paths.cwd, "dist/*.js")])
.pipe(plugins.g.istanbul()) // Covering files
.pipe(plugins.g.istanbul.hookRequire()) // Force `require` to return covered files
.pipe(plugins.g.gFunction(function () {
2016-05-21 17:41:18 +00:00
plugins.beautylog.ok("JS has been instrumentalized to get test code coverage!");
2016-03-29 23:32:41 +00:00
done.resolve(configArg);
}, "atEnd"));
return done.promise;
};
/**
*
* @returns {*}
*/
var mocha = function (configArg) {
var done = plugins.Q.defer();
2016-05-21 17:41:18 +00:00
npmts_promisechain_1.npmtsOra.end(); // end npmtsOra for tests.
2016-03-29 23:32:41 +00:00
var stream = plugins.gulp.src(["./test/test.js"])
.pipe(plugins.g.mocha())
.pipe(plugins.g.istanbul.writeReports()) // Creating the reports after tests ran
.pipe(plugins.g.gFunction(function () {
plugins.beautylog.ok("Tests have passed!");
done.resolve(configArg);
}, "atEnd"));
return done.promise;
};
var coverage = function (configArg) {
var done = plugins.Q.defer();
plugins.smartcov.get.percentage(plugins.path.join(paths.coverageDir, "lcov.info"))
.then(function (percentageArg) {
if (percentageArg >= configArg.coverageTreshold) {
2016-03-30 13:26:53 +00:00
plugins.beautylog.ok("your coverage of " + percentageArg.toString().blue + "% ".blue + "exceeds your treshold of " +
configArg.coverageTreshold.toString().blue + "%".blue);
2016-03-29 23:32:41 +00:00
}
else {
plugins.beautylog.warn("your coverage of " + percentageArg + "% " + "fails your treshold of " +
configArg.coverageTreshold + "%");
plugins.beautylog.error("exiting due to coverage failure");
process.exit(1);
}
done.resolve(configArg);
});
return done.promise;
};
2016-02-19 23:53:23 +00:00
exports.run = function (configArg) {
2016-02-22 21:22:39 +00:00
var done = plugins.Q.defer();
2016-02-19 23:53:23 +00:00
var config = configArg;
2016-05-17 00:32:40 +00:00
npmts_promisechain_1.npmtsOra.text("now starting tests");
plugins.beautylog.log("-------------------------------------------------------\n" +
"*************************** TESTS: ***************************\n" +
2016-03-27 10:32:55 +00:00
"--------------------------------------------------------------");
2016-03-29 23:32:41 +00:00
istanbul(config)
.then(mocha)
.then(coverage)
.then(done.resolve);
2016-02-19 23:53:23 +00:00
return done.promise;
};