自 2025 年 3 月 27 日起,我们建议您使用 android-latest-release
而非 aosp-main
构建 AOSP 并为其做出贡献。如需了解详情,请参阅 AOSP 的变更。
运行多设备 NFC 测试
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
本文档介绍如何运行多设备 NFC 测试。
满足前提条件
在运行多设备 NFC 测试之前,请满足以下条件:
- 准备一部搭载 Android 15 实现的设备。
- 遵循 CTS-V 要求。
- 遵循 CTS-V 设置。
为测试准备一个 DUT 和一个 PN532 NFC 读取器
完成上述步骤后,请按照以下步骤为测试准备一个 DUT 和一个 PN532 NFC 读取器:
- 通过 USB 将 DUT 连接到主机。
- 向主机授予通过 adb 访问 DUT 的权限。
将 CTS 验证程序应用 (CtsVerifier.apk
) 安装到 DUT 上:
extract root/out/host/linux-x86/cts-verifier/android-cts-verifier.zip
cd android-cts-verifier
adb install -r -g CtsVerifier.apk
安装 NFC 测试所需的 APK:
cd MultiDevice
adb install -r -g NfcEmulatorTestApp.apk
为 DUT 设置 NFC
如需为 DUT 设置 NFC,请按以下步骤操作:
- 在 DUT 上,前往设置菜单。
- 找到 NFC 或已连接的设备部分。
- 确保 NFC 切换开关已开启。
将 NFC 芯片放置在手机的 NFC 读取器上:
- 获取 PN532 NFC 芯片。我们建议使用 All-In-One PN532,选择“非 BLE”选项。
- 使用 USB 线,将 PN532 NFC 芯片挂接到 Linux 主机。
- 将 PN532 NFC 芯片放在手机的 NFC 读取器上,如下图所示:
图 1. NFC 芯片放置位置。
设置测试环境
请按照以下步骤设置测试环境:
运行这些命令以设置测试环境:
cd MultiDevice
source build/envsetup.sh
此命令会检查 Python 并设置 PYTHONPATH
环境变量。如果没有错误输出到终端,则说明环境已准备好运行多设备测试。
如果您在运行时看到错误消息“libtinfo.so.6: no version information
available (required by /bin/sh)
”,请运行以下命令来重命名 libtinfo.so.6
文件:
mv $ENV_DIRECTORY/lib/libtinfo.so.6 $ENV_DIRECTORY/lib/libtinfo.so.6.bak
在 MultiDevice/config.yml
中设置 DUT 和 PN532 NFC 读取器的设备序列 ID,以此搭建测试平台:
TestBeds:
- Name: CtsNfcHceMultiDeviceTestCases-py-ctsv
Controllers:
AndroidDevice:
- serial: "<device-id>"
TestParams:
pn532_serial_path: "<pn532-serial-path>"
运行 NFC 测试
如需运行 NFC 测试,请执行以下操作:
打开 CTS-V 应用,然后点按 NFC Tests(NFC 测试):
图 2. CTS-V 应用。
系统会显示包含测试用例列表的信息窗口:
图 3. CTS-V 应用测试用例。
在主机上运行测试:
MultiDevice$ python3 tools/run_all_tests.py
测试完成后,CTS-V 应用中会更新测试结果。成功的测试显示为绿色:
图 4. CTS-V 测试结果。
如果您看到任何标记为红色的未通过结果,请使用以下命令重新运行失败的测试:
python3 tools/run_all_tests.py --test_cases "`TestCaseA`" "`TestCaseB`" --test_files "`TestFileA`"
其中:
TestCaseA
和 TestCaseB
是 CTS-V 中显示的测试用例的名称。
TestFileA
是包含测试用例的测试文件。
例如:
python3 tools/run_all_tests.py --test_cases "test_conflicting_non_payment" "test_conflicting_non_payment_prefix" --test_files "CtsNfcHceMultiDeviceTestCases-py-ctsv"
本页面上的内容和代码示例受内容许可部分所述许可的限制。Java 和 OpenJDK 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-05-08。
[null,null,["最后更新时间 (UTC):2025-05-08。"],[],[],null,["# Run multi-device NFC tests (Android 15)\n\nThis document explains how to run multi-device NFC tests.\n\nMeet prerequisites\n------------------\n\nBefore you run multi-device NFC tests, do the following:\n\n1. Prepare a device with your Android 15 implementation.\n2. Follow CTS-V [requirements](/docs/compatibility/cts/verifier#requirements).\n3. Follow CTS-V [setup](/docs/compatibility/cts/verifier#setup).\n\nPrepare a DUT and a PN532 NFC reader for the test\n-------------------------------------------------\n\nAfter you finish the previous steps, follow these steps to run\nprepare a DUT and a PN532 NFC reader for the test:\n\n1. Connect the DUT to a host machine over USB.\n2. Grant permissions for the host to access the DUT over ADB.\n3. Install the CTS Verifier app (`CtsVerifier.apk`) on the DUT:\n\n extract root/out/host/linux-x86/cts-verifier/android-cts-verifier.zip\n\n cd android-cts-verifier\n\n adb install -r -g CtsVerifier.apk\n\n4. Install the NFC test required APKs:\n\n cd MultiDevice\n\n adb install -r -g NfcEmulatorTestApp.apk\n\nSet up NFC for the DUT\n----------------------\n\nFollow these steps to run set up NFC for the DUT:\n\n1. On the DUT, go to the **Settings** menu.\n2. Look for the **NFC** or **Connected Devices** section.\n3. Ensure the NFC toggle switch is turned on.\n4. Position an NFC chip on the phone's NFC reader:\n\n 1. Acquire a PN532 NFC chip. We recommend the [All-In-One PN532](https://shop.mtoolstec.com/product/mtools-all-in-one-pn532), non-BLE option.\n 2. Attach the PN532 NFC chip to the Linux host using a USB cable.\n 3. Place the PN532 NFC chip over the phone's NFC reader as shown in the following image:\n\n **Figure 1.** NFC chip placement.\n\nSet up the test environment\n---------------------------\n\nFollow these steps to run set up the test environment:\n\n1. Run these commands to set up the test environment:\n\n cd MultiDevice\n\n source build/envsetup.sh\n\n This command checks the Python and sets up the `PYTHONPATH` environment\n variable. If no errors are printed to the terminal, the environment is ready\n to run the multi-device tests.\n\n If you see the error message `libtinfo.so.6: no version information\n available (required by /bin/sh)` at runtime, run the following command\n to rename the `libtinfo.so.6` file: \n\n mv $ENV_DIRECTORY/lib/libtinfo.so.6 $ENV_DIRECTORY/lib/libtinfo.so.6.bak\n\n2. Set up the test bed by setting the device serial IDs of the DUT and PN532 NFC\n reader in `MultiDevice/config.yml`:\n\n TestBeds:\n - Name: CtsNfcHceMultiDeviceTestCases-py-ctsv\n Controllers:\n AndroidDevice:\n - serial: \"\u003cdevice-id\u003e\"\n TestParams:\n pn532_serial_path: \"\u003cpn532-serial-path\u003e\"\n\nRun the NFC tests\n-----------------\n\nTo run the NFC tests:\n\n1. Open the CTS-V app and tap **NFC Tests**:\n\n **Figure 2.** The CTS-V app.\n\n The info window with list of test cases appears:\n\n **Figure 3.** CTS-V app test cases.\n2. Run the tests on your host:\n\n MultiDevice$ python3 tools/run_all_tests.py\n\n When the tests are completed, the test results are updated in the CTS-V\n app. Successful tests are green:\n\n **Figure 4.** CTS-V test results.\n3. If you see any failures marked in red, use the following command to rerun\n the failed tests:\n\n python3 tools/run_all_tests.py --test_cases \"`\u003cvar translate=\"no\"\u003eTestCaseA\u003c/var\u003e`\" \"`\u003cvar translate=\"no\"\u003eTestCaseB\u003c/var\u003e`\" --test_files \"`\u003cvar translate=\"no\"\u003eTestFileA\u003c/var\u003e`\"\n\n Where:\n - \u003cvar translate=\"no\"\u003eTestCaseA\u003c/var\u003e and \u003cvar translate=\"no\"\u003eTestCaseB\u003c/var\u003e are the names of the test cases as displayed in CTS-V.\n - \u003cvar translate=\"no\"\u003eTestFileA\u003c/var\u003e is the test file containing the test cases.\n\n For example: \n\n python3 tools/run_all_tests.py --test_cases \"test_conflicting_non_payment\" \"test_conflicting_non_payment_prefix\" --test_files \"CtsNfcHceMultiDeviceTestCases-py-ctsv\""]]