ทริกเกอร์ Firebase Test Lab
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
นำเข้าโมดูลที่จำเป็น
หากต้องการเริ่มต้นใช้งาน ให้นำเข้าโมดูลที่จำเป็นสำหรับการจัดการFirebase Test Lab
เหตุการณ์
Node.js
// The Cloud Functions for Firebase SDK to set up triggers and logging.
const {onTestMatrixCompleted} = require("firebase-functions/v2/testLab");
const {logger} = require("firebase-functions");
Python
# The Cloud Functions for Firebase SDK to set up triggers and logging.
from firebase_functions import test_lab_fn, params
# The requests library to send web requests to Slack.
import requests
ทริกเกอร์ฟังก์ชันเมื่อ TestMatrix เสร็จสมบูรณ์
หากต้องการเรียกใช้ฟังก์ชัน Firebase Test Lab ให้กำหนดตัวแฮนเดิล
สำหรับเหตุการณ์การทดสอบเมทริกซ์ที่เสร็จสมบูรณ์ ในตัวอย่างนี้ ฟังก์ชันจะทริกเกอร์เมื่อการทดสอบเสร็จสมบูรณ์ ดึงข้อมูลเมทริกซ์การทดสอบจากออบเจ็กต์ CloudEvent และส่งผลการทดสอบที่เกี่ยวข้องไปยังแชแนล Slack
Node.js
exports.posttestresultstoslack = onTestMatrixCompleted(
{secrets: ["SLACK_WEBHOOK_URL"]},
async (event) => {
// Obtain Test Matrix properties from the CloudEvent
const {testMatrixId, state, outcomeSummary} = event.data;
// Create the title of the message
const title = `${getSlackmoji(state)} ${getSlackmoji(
outcomeSummary,
)} ${testMatrixId}`;
// Create the details of the message
const details = `Status: *${state}* ${getSlackmoji(
state,
)}\nOutcome: *${outcomeSummary}* ${getSlackmoji(outcomeSummary)}
`;
// Post the message to slack
const slackResponse = await postToSlack(title, details);
// Log the response
logger.log(slackResponse);
});
Python
@test_lab_fn.on_test_matrix_completed(secrets=["SLACK_WEBHOOK_URL"])
def posttestresultstoslack(
event: test_lab_fn.CloudEvent[test_lab_fn.TestMatrixCompletedData]) -> None:
"""Posts a test matrix result to Slack."""
# Obtain Test Matrix properties from the CloudEvent
test_matrix_id = event.data.test_matrix_id
state = event.data.state
outcome_summary = event.data.outcome_summary
# Create the title of the message
title = f"{slackmoji(state)} {slackmoji(outcome_summary)} {test_matrix_id}"
# Create the details of the message
details = (f"Status: *{state}* {slackmoji(state)}\n"
f"Outcome: *{outcome_summary}* {slackmoji(outcome_summary)}")
# Post the message to Slack
response = post_to_slack(title, details)
# Log the response
print(response.status_code, response.text)
เข้าถึงรายละเอียดลูกค้า
คุณอาจสร้างเมทริกซ์การทดสอบจากแหล่งที่มาหรือเวิร์กโฟลว์ที่แตกต่างกัน ดังนั้น จึงมักเป็นที่ต้องการที่จะสร้างฟังก์ชันที่ดำเนินการต่างๆ
ตามแหล่งที่มาหรือบริบทสำคัญอื่นๆ ของการทดสอบ เพื่อช่วยในเรื่องนี้
gcloud
ช่วยให้คุณส่งข้อมูลที่กำหนดเองได้เมื่อเริ่มการทดสอบ ซึ่งจะเข้าถึงได้ในภายหลังในฟังก์ชัน เช่น
gcloud beta firebase test android run \
--app=path/to/app.apk \
--client-details testType=pr,link=<path/to/pull-request>
จากนั้นทำดังนี้เพื่อเข้าถึงข้อมูลในฟังก์ชัน
Node.js
const testType = event.data.clientInfo.details.testType;
const link = event.data.clientInfo.details.link;
Python
test_type: str | None = event.data.client_info.details.get("testType")
link: str | None = event.data.client_info.details.get("link")
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-09-06 UTC
[null,null,["อัปเดตล่าสุด 2025-09-06 UTC"],[],[],null,["\u003cbr /\u003e\n\nImport the required modules\n\nTo get started, import the modules required for handling Firebase Test Lab\nevents: \n\nNode.js \n\n // The Cloud Functions for Firebase SDK to set up triggers and logging.\n const {onTestMatrixCompleted} = require(\"firebase-functions/v2/testLab\");\n const {logger} = require(\"firebase-functions\"); \n https://github.com/firebase/functions-samples/blob/c4fde45b65fab584715e786ce3264a6932d996ec/Node/quickstarts/testlab-matrix-completed/functions/index.js#L20-L22\n\nPython \n\n # The Cloud Functions for Firebase SDK to set up triggers and logging.\n from firebase_functions import test_lab_fn, params\n\n # The requests library to send web requests to Slack.\n import requests \n https://github.com/firebase/functions-samples/blob/c4fde45b65fab584715e786ce3264a6932d996ec/Python/testlab-to-slack/functions/main.py#L17-L21\n\nTrigger a function on TestMatrix completion\n\nTo trigger a Firebase Test Lab function, define a handler\nfor the test matrix completion event. In this example, the function\ntriggers on test completion, retrieves the test matrix data from\nthe CloudEvent object, and sends\nthe corresponding test results to a Slack channel: \n\nNode.js \n\n exports.posttestresultstoslack = onTestMatrixCompleted(\n {secrets: [\"SLACK_WEBHOOK_URL\"]},\n async (event) =\u003e {\n // Obtain Test Matrix properties from the CloudEvent\n const {testMatrixId, state, outcomeSummary} = event.data;\n\n // Create the title of the message\n const title = `${getSlackmoji(state)} ${getSlackmoji(\n outcomeSummary,\n )} ${testMatrixId}`;\n\n // Create the details of the message\n const details = `Status: *${state}* ${getSlackmoji(\n state,\n )}\\nOutcome: *${outcomeSummary}* ${getSlackmoji(outcomeSummary)}\n `;\n\n // Post the message to slack\n const slackResponse = await postToSlack(title, details);\n\n // Log the response\n logger.log(slackResponse);\n }); \n https://github.com/firebase/functions-samples/blob/c4fde45b65fab584715e786ce3264a6932d996ec/Node/testlab-to-slack/functions/index.js#L97-L119\n\nPython \n\n @test_lab_fn.on_test_matrix_completed(secrets=[\"SLACK_WEBHOOK_URL\"])\n def posttestresultstoslack(\n event: test_lab_fn.CloudEvent[test_lab_fn.TestMatrixCompletedData]) -\u003e None:\n \"\"\"Posts a test matrix result to Slack.\"\"\"\n\n # Obtain Test Matrix properties from the CloudEvent\n test_matrix_id = event.data.test_matrix_id\n state = event.data.state\n outcome_summary = event.data.outcome_summary\n\n # Create the title of the message\n title = f\"{slackmoji(state)} {slackmoji(outcome_summary)} {test_matrix_id}\"\n\n # Create the details of the message\n details = (f\"Status: *{state}* {slackmoji(state)}\\n\"\n f\"Outcome: *{outcome_summary}* {slackmoji(outcome_summary)}\")\n\n # Post the message to Slack\n response = post_to_slack(title, details)\n\n # Log the response\n print(response.status_code, response.text) \n https://github.com/firebase/functions-samples/blob/c4fde45b65fab584715e786ce3264a6932d996ec/Python/testlab-to-slack/functions/main.py#L70-L91\n\nAccess client details\n\nTest matrices may be created from different sources or workflows. It is\ntherefore often desirable to create functions that perform different actions\nbased on the source or other important context of the test. To help with this,\n`gcloud` allows you to pass arbitrary information when starting a test that can\nbe accessed later in your function. For example: \n\n gcloud beta firebase test android run \\\n --app=path/to/app.apk \\\n --client-details testType=pr,link=\u003cpath/to/pull-request\u003e\n\nAnd then to access the information in your function: \n\nNode.js \n\n const testType = event.data.clientInfo.details.testType;\n const link = event.data.clientInfo.details.link;\n\nPython \n\n test_type: str | None = event.data.client_info.details.get(\"testType\")\n link: str | None = event.data.client_info.details.get(\"link\")"]]