TestMatrix के पूरा होने पर फ़ंक्शन ट्रिगर करें
एक नया फ़ंक्शन बनाएं, जो इवेंट हैंडलर के साथ TestMatrix पूरा होने पर ट्रिगर होता है
functions.testLab.testMatrix().onComplete()
:
exports.sendEmailNotification = functions.testLab.testMatrix().onComplete((testMatrix) => {
// ...
});
टेस्ट की स्थिति और नतीजों को मैनेज करना
आपके फ़ंक्शन के हर बार लागू होने पर, TestMatrix
को पास किया जाता है. इसमें मैट्रिक की आखिरी स्थिति और समस्याओं को समझने में मदद करने वाली जानकारी शामिल होती है.
exports.handleTestMatrixCompletion = functions.testLab.testMatrix().onComplete(testMatrix => {
const matrixId = testMatrix.testMatrixId;
switch (testMatrix.state) {
case 'FINISHED':
console.log(`TestMatrix ${matrixId} finished with outcome: ${testMatrix.outcomeSummary}`);
break;
case 'INVALID':
console.log(`TestMatrix ${matrixId} was marked as invalid: ${testMatrix.invalidMatrixDetails}`);
break;
default:
console.log(`TestMatrix ${matrixId} completed with state ${testMatrix.state}`);
}
return null;
});
क्लाइंट की जानकारी ऐक्सेस करना
अलग-अलग सोर्स या वर्कफ़्लो से टेस्ट मैट्रिक्स बनाए जा सकते हैं. इसलिए, अक्सर ऐसे फ़ंक्शन बनाने का सुझाव दिया जाता है जो टेस्ट के सोर्स या अन्य अहम संदर्भ के आधार पर अलग-अलग कार्रवाइयां करते हैं. इसकी मदद से, gcloud
की मदद से टेस्ट शुरू करते समय अपनी पसंद के मुताबिक जानकारी दी जा सकती है. इस जानकारी को बाद में फ़ंक्शन में ऐक्सेस किया जा सकता है. उदाहरण के लिए:
gcloud beta firebase test android run \
--app=path/to/app.apk \
--client-details testType=pr,link=https://path/to/pull-request
फ़ंक्शन का उदाहरण:
exports.notifyOnPullRequestFailure = functions.testLab.testMatrix().onComplete(testMatrix => {
if (testMatrix.clientInfo.details['testType'] != 'pr') {
// Not a pull request
return null;
}
if (testMatrix.state == 'FINISHED' && testMatrix.outcomeSummary == 'SUCCESS') {
// No failure
return null;
}
const link = testMatrix.clientInfo.details['link'];
let message = `Test Lab validation for pull request ${link} failed. `;
if (!!testMatrix.resultStorage.resultsUrl) {
message += `Test results available at ${testMatrix.resultStorage.resultsUrl}. `;
}
// Send notification here ...
});