Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add mochawesome reporter #61

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/reporters/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ exports.dot = require('./dot.js')
exports.doc = require('./doc.js')
exports.tap = true
exports.json = require('./json.js')
exports.mochawesome = require('./mochawesome.js')
exports.list = require('./list.js')
exports.min = require('./min.js')
exports.spec = require('./spec.js')
Expand Down
237 changes: 237 additions & 0 deletions lib/reporters/mochawesome.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,237 @@
/**
* Module dependencies.
*/

var Base = require('./base'),
utils = require('../utils')

/**
* Expose `mochawesome`.
*/

exports = module.exports = MochawesomeReporter

/**
* Initialize a new `mochawesome` reporter.
*
* @param {Runner} runner
* @api public
*/

function MochawesomeReporter(runner) {
var self = this
Base.call(this, runner)

var allTests = []
var allSuites = []

var rootUUID = uuidv4()
var currentSuite = null
var bailed = false

// mochawesome needs a single root
var root = {
uuid: rootUUID,
title: '',
fullFile: '',
file: '',
beforeHooks: [],
afterHooks: [],
tests: [],
suites: [],
passes: [],
failures: [],
pending: [],
skipped: [],
duration: 0,
root: true,
rootEmpty: true,
_timeout: 2000
}

// write tests in the root to this suite
// mochawesome needs at least one suite to display correctly
var rootSuite = {
uuid: uuidv4(),
title: '',
fullFile: '',
file: '',
beforeHooks: [],
afterHooks: [],
tests: [],
suites: [],
passes: [],
failures: [],
pending: [],
skipped: [],
duration: 0,
root: false,
rootEmpty: false,
_timeout: 2000
}

runner.on('bailout', function (bailout, suite) {
if (currentSuite) {
runner.emit('suite end', currentSuite)
}
if (bailed) return
bailed = true
})

runner.on('suite', function (suite) {
var parentSuite = currentSuite
currentSuite = {
uuid: uuidv4(),
title: suite.title,
fullFile: suite.root ? suite.title : '',
file: suite.root ? suite.title : '',
beforeHooks: [], // TODO
afterHooks: [], // TODO
tests: [],
suites: [],
passes: [],
failures: [],
pending: [],
skipped: [],
duration: Math.round(suite.duration),
root: false,
rootEmpty: false,
_timeout: 2000
}
allSuites.push(currentSuite)

Object.defineProperty(currentSuite, 'parent', {
value: parentSuite,
writable: true,
configurable: true,
enumerable: false
})
})

runner.on('suite end', function () {
var tests = currentSuite.tests
var pickUuid = function(t){return t.uuid}
var passes = tests.filter(function(t){return t.pass})
var failures = tests.filter(function(t){return t.fail})
var pending = tests.filter(function(t){return t.pending})
var skipped = tests.filter(function(t){return t.skipped})
currentSuite.passes = passes.map(pickUuid)
currentSuite.failures = failures.map(pickUuid)
currentSuite.pending = pending.map(pickUuid)
currentSuite.skipped = skipped.map(pickUuid)

if (currentSuite.parent) {
currentSuite.parent.suites.push(currentSuite)
} else {
root.suites.push(currentSuite)
}
currentSuite = currentSuite.parent
})

runner.on('test end', function(test) {
// write the test to the root if not in a suite
var mySuite = currentSuite || rootSuite
var _test = {
title: test.title,
fullTitle: test.fullTitle(),
timedOut: false, // TODO
duration: Math.round(test.duration),
state: test.result.ok ? 'passed' : 'failed',
speed: test.speed,
pass: !!test.result.ok && !test.result.todo && !test.result.skip,
fail: !test.result.ok && !test.result.todo && !test.result.skip,
pending: !!test.result.todo,
context: null, // TODO
code: utils.clean(test.fn.toString()),
err: errorJSON(test.err || {}),
uuid: uuidv4(),
parentUUID: mySuite.uuid,
isHook: false, // TODO
skipped: !!test.result.skip
}
mySuite.tests.push(_test)
allTests.push(_test)
})

runner.on('end', function() {
// if any tests were at the root, include the rootSuite
if (rootSuite.tests.length) {
root.suites.push(rootSuite)
}
var passes = allTests.filter(function(t){return t.pass})
var failures = allTests.filter(function(t){return t.fail})
var pending = allTests.filter(function(t){return t.pending})
var skipped = allTests.filter(function(t){return t.skipped})
var obj = {
stats: {
suites: allSuites.length,
tests: allTests.length,
passes: passes.length,
pending: pending.length,
failures: failures.length,
start: self.stats.start,
end: self.stats.end,
duration: Math.round(self.stats.duration),
testsRegistered: allTests.length,
passPercent: passes.length / allTests.length * 100,
pendingPercent: pending.length / allTests.length * 100,
other: 0, // TODO
hasOther: false, // TODO
skipped: skipped.length,
hasSkipped: !!skipped.length
},
results: [root],
meta: {
mocha: {
version: '7.1.0'
},
mochawesome: {
options: {
quiet: false,
reportFilename: 'mochawesome',
saveHtml: true,
saveJson: true,
consoleReporter: 'spec',
useInlineDiffs: false,
code: true
},
version: '5.0.0'
},
marge: {
options: {},
version: '4.1.0'
}
}
}

runner.testResults = obj

process.stdout.write(JSON.stringify(obj, null, 2))
})
}

/**
* Generate a UUID.
* @return {String}
*/

function uuidv4() {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = Math.random() * 16 | 0, v = c === 'x' ? r : (r & 0x3 | 0x8)
return v.toString(16)
})
}

/**
* Transform `error` into a JSON object.
* @param {Error} err
* @return {Object}
*/

function errorJSON(err) {
var res = {}
Object.getOwnPropertyNames(err).forEach(function(key) {
res[key] = err[key]
}, err)
return res
}
15 changes: 15 additions & 0 deletions test/reporters/mochawesome/fixtures/flat.tap
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
TAP version 13
# create a thing
ok 1 - create a thing
# delete a thing
not ok 2 - delete a thing
not ok 3 - todo me # TODO
ok 4 - skip me # SKIP

1..4
# tests 4
# pass 1
# fail 1
# todo 1
# skip 1

Loading