现在,使用清单中列出的 firestore-send-email 扩展程序实例,Local Emulator Suite 会将该扩展程序的源代码下载到 ~/.cache/firebase/extensions。源代码下载完成后,系统将启动 Local Emulator Suite,然后您将能够触发扩展程序的任何后台触发函数,并将您的应用连接到 Local Emulator Suite 以测试这些函数与应用的集成。
您可以按照 Trigger Email 扩展程序的要求,使用 Emulator Suite UI 向电子邮件文档集合添加数据并设置其他后端资源。
或者,对于持续集成工作流等非交互式测试环境,您可以编写用于评估该扩展程序的测试脚本,让脚本除了执行其他步骤外,还会填充必要的 Cloud Firestore 数据并触发函数。然后,您需要调用 Local Emulator Suite 来执行该测试脚本:
Firebase Emulator Suite 不会尝试复制或遵从任何与 IAM 相关的运行行为。模拟器遵循提供的 Firebase 安全规则,但在通常会使用 IAM 的情况下(例如,用来设置 Cloud Functions 函数调用服务账号以及权限等),模拟器不可配置,并且将使用开发者机器上的全局可用账号(类似于直接运行本地脚本)。
触发类型限制
目前,对于 Cloud Firestore、Realtime Database、Cloud Storage for Firebase、Authentication 和 Pub/Sub,Firebase Local Emulator Suite 仅支持由 HTTP 请求触发的函数、由扩展程序的 Eventarc 自定义事件触发器触发的函数,以及由后台事件触发的函数。如需评估使用其他类型的触发函数的扩展程序,您需要在 Firebase 测试项目中安装相应的扩展程序。
[null,null,["最后更新时间 (UTC):2025-08-12。"],[],[],null,["\u003cbr /\u003e\n\n| **Beta.** This emulator is currently in beta. It might be\n| changed in backward-incompatible ways. As always, feedback is greatly\n| appreciated. Let us know what you think!\n\nBefore using the Extensions emulator with your app, make sure that\nyou [understand the overall Firebase Local Emulator Suite workflow](/docs/emulator-suite/connect_and_prototype?database=Firestore),\nand that you [install and configure](/docs/emulator-suite/install_and_configure)\nthe Local Emulator Suite and review its [CLI commands](/docs/emulator-suite/install_and_configure#startup).\n\nThis guide also assumes you are familiar with [Firebase Extensions](/docs/extensions)\nand how to [use them in your Firebase apps](/docs/extensions/overview-use-extensions).\n\nWhat can I do with the Extensions emulator?\n\nWith the Extensions emulator, you can install and manage extensions in a\nsafe local environment and better understand their capabilities while minimizing\nbilling costs. The emulator runs your extension's functions locally, including\nbackground event-triggered functions using the emulators for\nCloud Firestore, Realtime Database, Cloud Storage for Firebase, Authentication and\nPub/Sub, and Eventarc-triggered functions implemented in\nCloud Functions v2.\n| **Note:** Some extensions may call Google Cloud APIs and access services for which emulators do not exists in the Local Emulator Suite. Running the extension will still access those live services and may result in billing costs. Be sure to review extension descriptions carefully before evaluating them, so you understand billing impacts. We recommend you create and use a demo project for running the Extensions emulator, as described next.\n\nChoose a Firebase project\n\nThe Firebase Local Emulator Suite emulates products for a single Firebase project.\n\nTo select the project to use, before you start the emulators, in the CLI run\n`firebase use` in your working directory. Or, you can pass\nthe `--project` flag to each emulator\ncommand.\n| **Note:** It's generally a good practice to use one project ID for all emulator invocations, so the Emulator Suite UI, different product emulators, and all running instances of a particular emulator can communicate correctly in all cases. In fact, by default, the Local Emulator Suite will warn on detecting multiple project IDs in use, though you can override this behavior. For guidance on setting and managing project IDs, see the [Installation and configuration guide](/docs/emulator-suite/install_and_configure#project_id_configuration).\n\nLocal Emulator Suite supports emulation of *real* Firebase projects and\n*demo* projects.\n\n| Project type | Features | Use with emulators |\n|--------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Real | A real Firebase project is one you created and configured (most likely via the Firebase console). Real projects have live resources, like database instances, storage buckets, functions, or any other resource you set up for that Firebase project. | When working with real Firebase projects, you can run emulators for any or all of the supported products. For any products you are not emulating, your apps and code will interact with the *live* resource (database instance, storage bucket, function, etc.). |\n| Demo | A demo Firebase project has no *real* Firebase configuration and no live resources. These projects are usually accessed via codelabs or other tutorials. Project IDs for demo projects have the `demo-` prefix. | When working with demo Firebase projects, your apps and code interact with emulators *only*. If your app attempts to interact with a resource for which an emulator isn't running, that code will fail. |\n\nWe recommend you use demo projects wherever possible. Benefits include:\n\n- Easier setup, since you can run the emulators without ever creating a Firebase project\n- Stronger safety, since if your code accidentally invokes non-emulated (production) resources, there is no chance of data change, usage and billing\n- Better offline support, since there is no need to access the internet to download your SDK configuration.\n\n| **Note:** If you want to emulate cross-service interactions such as database-triggered Cloud Functions or Rules that rely on Authentication you must make sure that the project ID in your code (in `initializeApp()`, etc.) matches the project ID used by the Firebase CLI.\n\nInstall and evaluate an extension\n\nUsing the Extensions emulator to evaluate whether an extension meets your\nneeds is straightforward.\n\nLet's assume you're interested in the Trigger Email\n(`firestore-send-email`) [extension](/docs/extensions/official/firestore-send-email),\nthough the following workflow covers any extension. When run with local emulators,\nTrigger Email will automatically make use of the Cloud Firestore and\nCloud Functions emulators.\n\nTo evaluate an extension locally:\n\n1. Add the extension to the local extensions manifest. An extensions manifest is\n a list of extension instances and their configurations.\n\n ```\n firebase ext:install --local firebase/firestore-send-email\n ```\n\n Running the above command will prompt you to configure the latest version of\n `firebase/firestore-send-email` extension and save the configuration to\n the manifest, but it won't deploy the configuration to your project. For\n more about this, see [Manage extensions configuration with manifests](/docs/extensions/manifest)\n2. Start the Local Emulator Suite as you would normally.\n\n ```\n firebase emulators:start\n ```\n\nNow, using the `firestore-send-email` extension instance listed in\nyour manifest, the Local Emulator Suite will download the source code of\nthat extension to `~/.cache/firebase/extensions`. Once soures have been\ndownloaded, the Local Emulator Suite will start and you'll be able to\ntrigger any of the extension's background triggered functions and connect your\napp to the Local Emulator Suite to test their integration with your app.\n\nYou can use Emulator Suite UI to add data to the email documents collection\nand set up other backend resources, as required by the Trigger Email extension.\n\nAlternatively, for non-interactive testing environments like continuous\nintegration workflows, you can write a test script for evaluating the extension\nthat, among other steps, populates necessary Cloud Firestore data and\ntriggers functions. You would then invoke the Local Emulator Suite\nto execute your test script: \n\n firebase emulators:exec my-test.sh\n\n| **Note:** You can use the Extensions emulator to evaluate extensions that publish custom events. The Extensions emulator works together with the Cloud Functions emulator to help you test custom event-handling functions you implement with Cloud Functions v2 code. See [Connect your app to the Cloud Functions Emulator](/docs/emulator-suite/connect_functions).\n\nHow testing with the Extensions emulator differs from production\n\nThe Extensions emulator lets you test extensions in a way that closely\nmatches the production experience. However, there are some differences from\nproduction behavior.\n\nCloud IAM\n\nThe Firebase Emulator Suite does not attempt to replicate or respect any\nIAM-related behavior for running. Emulators adhere to the Firebase Security\nRules provided, but in situations where IAM would normally be used, for example\nto set Cloud Functions invoking service account and thus permissions, the\nemulator is not configurable and will use the globally-available account on\nyour developer machine, similar to running a local script directly.\n\nTriggering type limitation\n\nCurrently, the Firebase Local Emulator Suite only supports HTTP request-triggered\nfunctions, Eventarc custom event triggers for extensions, and background\nevent-triggered functions for Cloud Firestore, Realtime Database,\nCloud Storage for Firebase, Authentication and Pub/Sub. To evaluate extensions\nthat use other types of triggered functions, you need to\n[install your extension](/docs/extensions/install-extensions)\nin a test Firebase project.\n\nWhat next?\n\n- For a curated set of videos and detailed how-to examples, follow the [Firebase Emulators Training Playlist](/learn/pathways/firebase-emulators)."]]