Mở rộng Phòng thử nghiệm Firebase bằng Cloud Functions


Nhập các mô-đun bắt buộc

Để bắt đầu, hãy nhập các mô-đun cần thiết để xử lý sự kiện Firebase Test Lab:

 // The Cloud Functions for Firebase SDK to set up triggers and logging.
const {onTestMatrixCompleted} = require("firebase-functions/v2/testLab");
const {logger} = require("firebase-functions");
 # 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

Kích hoạt một hàm khi hoàn tất TestMatrix

Để kích hoạt hàm Firebase Test Lab, hãy xác định một trình xử lý cho sự kiện hoàn tất ma trận kiểm thử. Trong ví dụ này, hàm này sẽ kích hoạt khi hoàn tất kiểm thử, truy xuất dữ liệu ma trận kiểm thử từ đối tượng CloudEvent và gửi kết quả kiểm thử tương ứng đến một kênh Slack:

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);
    });
@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)

Truy cập thông tin chi tiết về ứng dụng

Bạn có thể tạo ma trận kiểm thử từ nhiều nguồn hoặc quy trình công việc. Do đó, bạn nên tạo các hàm thực hiện nhiều thao tác dựa trên nguồn hoặc ngữ cảnh quan trọng khác của kiểm thử. Để giúp giải quyết vấn đề này, gcloud cho phép bạn truyền thông tin tuỳ ý khi bắt đầu một chương trình kiểm thử có thể truy cập sau trong hàm. Ví dụ:

gcloud beta firebase test android run \
    --app=path/to/app.apk \
    --client-details testType=pr,link=<path/to/pull-request>

Sau đó, để truy cập thông tin trong hàm:

const testType = event.data.clientInfo.details.testType;
const link = event.data.clientInfo.details.link;
test_type: str | None = event.data.client_info.details.get("testType")
link: str | None = event.data.client_info.details.get("link")