Code coverage report for preceptor-reporter/lib/reporter/plain.js

Statements: 100% (49 / 49)      Branches: 50% (2 / 4)      Functions: 100% (14 / 14)      Lines: 100% (49 / 49)      Ignored: none     

All files » preceptor-reporter/lib/reporter/ » plain.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227      1 1             1                 1   1 1   1 1                           63                         1                         4 4                   4 4                       3   3   3 3                     2   2   2 2                         15 15                         2   2   2 2                       2   2   2 2                   4   4   4 4                   2   2   2 2                     3   3   3 3                   2   2   2 2       1  
// Copyright 2014, Yahoo! Inc.
// Copyrights licensed under the Mit License. See the accompanying LICENSE file for terms.
 
var AbstractReporter = require('../abstractReporter');
var util = require('util');
 
/**
 * @class PlainReporter
 * @extends AbstractReporter
 * @constructor
 */
var PlainReporter = AbstractReporter.extend(
 
	{
		/**
		 * Initializes the instance
		 *
		 * @method initialize
		 */
		initialize: function () {
			this.__super();
 
			Eif (this.getOptions().progress === undefined) {
				this.getOptions().progress = true;
			}
			Eif (this.getOptions().output === undefined) {
				this.getOptions().output = true;
			}
		},
 
 
		/**
		 * Escape message
		 *
		 * @method _escape
		 * @param {string} msg
		 * @return {string}
		 * @private
		 */
		_escape: function (msg) {
			return (msg + '').
				replace(/'/g, "\\'").
				replace(/\n/g, "\\n").
				replace(/\r/g, "\\r");
		},
 
 
		/**
		 * Called when reporting stops
		 *
		 * @method stop
		 */
		stop: function () {
			this.__super();
		},
 
 
		/**
		 * Called when suite starts
		 *
		 * @method suiteStart
		 * @param {string} id
		 * @param {string} parentId
		 * @param {string} suiteName
		 */
		suiteStart: function (id, parentId, suiteName) {
			this.__super(id, parentId, suiteName);
			this.console(id, 'start', util.format("suiteStarted name='%s'", this._escape(suiteName)) + "\n");
		},
 
		/**
		 * Called when suite ends
		 *
		 * @method suiteEnd
		 * @param {string} id
		 */
		suiteEnd: function (id) {
			this.__super(id);
			this.console(id, 'end', util.format("suiteFinished name='%s'", this._escape(this.getContainer().getAction(id).name)) + "\n");
		},
 
 
		/**
		 * Called when any item has custom data
		 *
		 * @method itemData
		 * @param {string} id
		 * @param {string} json JSON-data
		 */
		itemData: function (id, json) {
			var action;
 
			this.__super(id, json);
 
			action = this.getContainer().getAction(id);
			this.console(id, 'start', util.format("itemData name='%s' data='%s'", this._escape(action.name), this._escape(json)) + "\n");
		},
 
		/**
		 * Called when any item has a custom message
		 *
		 * @method itemMessage
		 * @param {string} id
		 * @param {string} message
		 */
		itemMessage: function (id, message) {
			var action;
 
			this.__super(id, message);
 
			action = this.getContainer().getAction(id);
			this.console(id, 'start', util.format("itemMessage name='%s' message='%s'", this._escape(action.name), this._escape(message)) + "\n");
		},
 
 
		/**
		 * Called when test starts
		 *
		 * @method testStart
		 * @param {string} id
		 * @param {string} parentId
		 * @param {string} testName
		 */
		testStart: function (id, parentId, testName) {
			this.__super(id, parentId, testName);
			this.console(id, 'start', util.format("testStarted name='%s'", this._escape(testName)) + "\n");
		},
 
 
		/**
		 * Called when test fails
		 *
		 * @method testFailed
		 * @param {string} id
		 * @param {string} [message]
		 * @param {string} [reason]
		 */
		testFailed: function (id, message, reason) {
			var action;
 
			this.__super(id, message, reason);
 
			action = this.getContainer().getAction(id);
			this.console(id, 'end', util.format("testFailed name='%s' message='%s' details='%s'", this._escape(action.name), this._escape(message), this._escape(reason)) + "\n");
		},
 
		/**
		 * Called when test has an error
		 *
		 * @method testError
		 * @param {string} id
		 * @param {string} [message]
		 * @param {string} [reason]
		 */
		testError: function (id, message, reason) {
			var action;
 
			this.__super(id, message, reason);
 
			action = this.getContainer().getAction(id);
			this.console(id, 'end', util.format("testError name='%s' message='%s' details='%s'", this._escape(action.name), this._escape(message), this._escape(reason)) + "\n");
		},
 
		/**
		 * Called when test has passed
		 *
		 * @method testPassed
		 * @param {string} id
		 */
		testPassed: function (id) {
			var action;
 
			this.__super(id);
 
			action = this.getContainer().getAction(id);
			this.console(id, 'end', util.format("testPassed name='%s' duration='%s'", this._escape(action.name), this._escape(action.duration)) + "\n");
		},
 
		/**
		 * Called when test is undefined
		 *
		 * @method testUndefined
		 * @param {string} id
		 */
		testUndefined: function (id) {
			var action;
 
			this.__super(id);
 
			action = this.getContainer().getAction(id);
			this.console(id, 'end', util.format("testUndefined name='%s'", this._escape(action.name)) + "\n");
		},
 
		/**
		 * Called when test is skipped
		 *
		 * @method testSkipped
		 * @param {string} id
		 * @param {string} [reason]
		 */
		testSkipped: function (id, reason) {
			var action;
 
			this.__super(id, reason);
 
			action = this.getContainer().getAction(id);
			this.console(id, 'end', util.format("testSkipped name='%s' message='%s'", this._escape(action.name), this._escape(reason)) + "\n");
		},
 
		/**
		 * Called when test is incomplete
		 *
		 * @method testIncomplete
		 * @param {string} id
		 */
		testIncomplete: function (id) {
			var action;
 
			this.__super(id);
 
			action = this.getContainer().getAction(id);
			this.console(id, 'end', util.format("testIncomplete name='%s'", this._escape(action.name)) + "\n");
		}
	});
 
module.exports = PlainReporter;