-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
🏗 [test-case-reporting] Implement PoC for e2e test reporter #29768
Changes from all commits
b0711de
4304f89
f32d9a8
c1bdd8a
52b1939
cec228b
739b4d7
1f19482
8f84767
0e222fa
35a1bd5
01480c6
ad65609
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/** | ||
* Copyright 2020 The AMP HTML Authors. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS-IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
const JsonReporter = require('./mocha-custom-json-reporter'); | ||
const mocha = require('mocha'); | ||
const MochaDotsReporter = require('./mocha-dots-reporter'); | ||
const {Base} = mocha.reporters; | ||
|
||
function ciReporter(runner, options) { | ||
Base.call(this, runner, options); | ||
this._mochaDotsReporter = new MochaDotsReporter(runner, options); | ||
this._jsonReporter = new JsonReporter(runner, options); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We'll probably want to skip the json reporter depending on whether a certain flag is set; I'm not familiar with this part of the codebase, what would be the cleanest way to do this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I suspect the same argv pattern you used for the gulp upload-report task (or whatever it was called) would work here |
||
return this; | ||
} | ||
ciReporter.prototype.__proto__ = Base.prototype; | ||
|
||
module.exports = ciReporter; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/** | ||
* Copyright 2020 The AMP HTML Authors. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS-IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
'use strict'; | ||
|
||
const fs = require('fs').promises; | ||
const { | ||
EVENT_TEST_PASS, | ||
EVENT_TEST_FAIL, | ||
EVENT_RUN_END, | ||
EVENT_TEST_PENDING, | ||
EVENT_SUITE_BEGIN, | ||
EVENT_SUITE_END, | ||
} = require('mocha').Runner; | ||
const {Base} = require('mocha').reporters; | ||
const {inherits} = require('mocha').utils; | ||
|
||
async function writeOutput(output, filename) { | ||
try { | ||
await fs.writeFile(filename, JSON.stringify(output, null, 4)); | ||
} catch (error) { | ||
process.stdout.write( | ||
Base.color( | ||
'fail', | ||
`Could not write test result report to file '${filename}'` | ||
) | ||
); | ||
} | ||
} | ||
|
||
/** | ||
* Custom Mocha reporter for CI builds. | ||
* Mimics the structured karma reporter, but for Mocha. | ||
* @param {*} runner | ||
*/ | ||
function JsonReporter(runner) { | ||
Base.call(this, runner); | ||
const testEvents = []; | ||
let suiteList = []; | ||
|
||
runner.on(EVENT_SUITE_BEGIN, function (suite) { | ||
suiteList.push(suite.title); | ||
}); | ||
|
||
runner.on(EVENT_SUITE_END, function () { | ||
// We need a fresh copy every time we make a new suite, | ||
// so we can't use pop here (or the suiteList info of previous | ||
// tests would be changed) | ||
suiteList = suiteList.slice(0, -1); | ||
}); | ||
|
||
[EVENT_TEST_PASS, EVENT_TEST_FAIL, EVENT_TEST_PENDING].forEach((event) => { | ||
runner.on(event, (test) => { | ||
testEvents.push({test, suiteList, event}); | ||
}); | ||
}); | ||
Rafer45 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
runner.on(EVENT_RUN_END, async function () { | ||
const testResults = testEvents.map(({test, suiteList, event}) => ({ | ||
description: test.title, | ||
suite: suiteList, | ||
success: event === EVENT_TEST_PASS, | ||
skipped: event === EVENT_TEST_PENDING, | ||
time: test.duration, // in milliseconds | ||
})); | ||
|
||
// Apparently we'll need to add a --no-exit flag when calling this | ||
// to allow for the asynchronous reporter. | ||
// See https://github.com/mochajs/mocha/issues/812 | ||
await writeOutput({testResults}, `result-reports/e2e.json`); | ||
}); | ||
} | ||
|
||
inherits(JsonReporter, Base); | ||
module.exports = JsonReporter; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Didn't we use
report-results
or something elsewhere, or was this the same flag?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The flag for the tasks is
report
; the uploading gulp task is istest-report-upload
-- see #29495 (comment)