自 2025 年 3 月 27 日起,我们建议您使用 android-latest-release
而非 aosp-main
构建 AOSP 并为其做出贡献。如需了解详情,请参阅 AOSP 的变更。
OmniLab ATS API
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
OmniLab ATS 提供用于调度测试运行、验证进度等的 API。您可以使用它们将 Test Station 集成到工作流和服务中。
API 参考文档
OmniLab ATS 接口属于 RESTful 接口,使用面向资源的网址,可处理 JSON 编码的数据。
R12 版引入了一个 Google APIs Explorer,以用于记录 API 端点,包括其参数和响应。您可以通过 Google APIs Explorer 来试用 API。
图 1. Google APIs Explorer 的链接
图 2. 突出显示 OpenAPI 规范的 Google APIs Explorer
生成客户端
您可以使用 Google APIs Explorer(默认位于 http://localhost:8000/_ah/api_docs/api.json
)中的 OpenAPI 规范生成 OmniLab ATS 客户端。
下载 OpenAPI 生成器工具。
运行以下命令,以指定的编程语言生成客户端。
java -jar openapi-generator-cli.jar generate \
--input-spec http://localhost:8000/_ah/api_docs/api.json \
--generator-name LANGUAGE \
--output OUTPUT_DIRECTORY
如需了解详情,请参阅 OpenAPI 生成器文档。
本页面上的内容和代码示例受内容许可部分所述许可的限制。Java 和 OpenJDK 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-03-04。
[null,null,["最后更新时间 (UTC):2025-03-04。"],[],[],null,["# OmniLab ATS API\n\nOmniLab ATS offers APIs to schedule test runs, verify progress, and more. You\ncan use them to integrate Test Station into your workflows and services.\n\nAPI reference\n-------------\n\nThe OmniLab ATS interface is RESTful, uses resource-oriented URLs, and handles\nJSON-encoded data.\n\nVersion R12 introduces a Google APIs Explorer that documents the API endpoints,\nincluding their parameters and responses. You can use the Google APIs Explorer\nto try APIs.\n\n**Figure 1.** Link to the Google APIs Explorer\n\n**Figure 2.** Google APIs Explorer with OpenAPI specification highlighted\n\nGenerate a client\n-----------------\n\nYou can generate OmniLab ATS clients from the OpenAPI specification located in\nthe Google APIs Explorer (at `http://localhost:8000/_ah/api_docs/api.json` by\ndefault).\n\n1. Download the [OpenAPI Generator tool](https://openapi-generator.tech/docs/installation#jar).\n\n2. Run the following command to generate a client in the specified programming\n language.\n\n```\njava -jar openapi-generator-cli.jar generate \\\n --input-spec http://localhost:8000/_ah/api_docs/api.json \\\n --generator-name LANGUAGE \\\n --output OUTPUT_DIRECTORY\n```\n\nSee the [OpenAPI Generator documentation](https://openapi-generator.tech/docs/usage)\nfor more information."]]