A partir de 27 de março de 2025, recomendamos usar android-latest-release
em vez de aosp-main
para criar e contribuir com o AOSP. Para mais informações, consulte Mudanças no AOSP.
Executar testes de NFC em vários dispositivos (Android 15)
Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
Este documento explica como executar testes de NFC em vários dispositivos.
Atenda aos pré-requisitos
Antes de executar testes de NFC em vários dispositivos, faça o seguinte:
- Prepare um dispositivo com a implementação do Android 15.
- Siga os requisitos do CTS-V.
- Siga a configuração do CTS-V.
Preparar um DUT e um leitor PN532 NFC para o teste
Depois de concluir as etapas anteriores, siga estas etapas para executar
e preparar um DUT e um leitor NFC PN532 para o teste:
- Conecte o DUT a uma máquina host por USB.
- Conceda permissões para o host acessar o DUT pelo ADB.
Instale o app CTS Verifier (CtsVerifier.apk
) no DUT:
extract root/out/host/linux-x86/cts-verifier/android-cts-verifier.zip
cd android-cts-verifier
adb install -r -g CtsVerifier.apk
Instale os APKs necessários para o teste de NFC:
cd MultiDevice
adb install -r -g NfcEmulatorTestApp.apk
Configurar a NFC para o DUT
Siga estas etapas para configurar a NFC para o DUT:
- No DUT, acesse o menu Settings.
- Procure a seção NFC ou Dispositivos conectados.
- Confira se a chave de NFC está ativada.
Posicione um chip NFC no leitor de NFC do smartphone:
- Adquira um chip NFC PN532. Recomendamos a opção
All-In-One PN532 sem BLE.
- Conecte o chip PN532 NFC ao host Linux usando um cabo USB.
- Coloque o chip PN532 NFC sobre o leitor de NFC do smartphone, conforme mostrado na imagem a seguir:
Figura 1. Posicionamento do chip NFC.
Configurar o ambiente de teste
Siga estas etapas para configurar o ambiente de teste:
Execute estes comandos para configurar o ambiente de teste:
cd MultiDevice
source build/envsetup.sh
Esse comando verifica o Python e configura a variável de ambiente PYTHONPATH
. Se nenhum erro for impresso no terminal, o ambiente estará pronto
para executar os testes em vários dispositivos.
Se a mensagem de erro libtinfo.so.6: no version information
available (required by /bin/sh)
aparecer no momento da execução, execute o comando a seguir
para renomear o arquivo libtinfo.so.6
:
mv $ENV_DIRECTORY/lib/libtinfo.so.6 $ENV_DIRECTORY/lib/libtinfo.so.6.bak
Configure o ambiente de teste definindo os IDs de série do dispositivo do DUT e do leitor NFC PN532
em MultiDevice/config.yml
:
TestBeds:
- Name: CtsNfcHceMultiDeviceTestCases-py-ctsv
Controllers:
AndroidDevice:
- serial: "<device-id>"
TestParams:
pn532_serial_path: "<pn532-serial-path>"
Executar os testes de NFC
Para executar os testes de NFC:
Abra o app CTS-V e toque em Testes de NFC:
Figura 2. O app CTS-V.
A janela de informações com a lista de casos de teste aparece:
Figura 3. Casos de teste do app CTS-V.
Execute os testes no host:
MultiDevice$ python3 tools/run_all_tests.py
Quando os testes são concluídos, os resultados são atualizados no app CTS-V. Os testes bem-sucedidos ficam em verde:
Figura 4. Resultados do teste CTS-V.
Se você encontrar falhas marcadas em vermelho, use o seguinte comando para executar novamente
os testes com falha:
python3 tools/run_all_tests.py --test_cases "`TestCaseA`" "`TestCaseB`" --test_files "`TestFileA`"
Em que:
TestCaseA
e TestCaseB
são os nomes dos casos de teste mostrados no CTS-V.
TestFileA
é o arquivo de teste que contém os casos de teste.
Exemplo:
python3 tools/run_all_tests.py --test_cases "test_conflicting_non_payment" "test_conflicting_non_payment_prefix" --test_files "CtsNfcHceMultiDeviceTestCases-py-ctsv"
O conteúdo e os exemplos de código nesta página estão sujeitos às licenças descritas na Licença de conteúdo. Java e OpenJDK são marcas registradas da Oracle e/ou suas afiliadas.
Última atualização 2025-07-27 UTC.
[[["Fácil de entender","easyToUnderstand","thumb-up"],["Meu problema foi resolvido","solvedMyProblem","thumb-up"],["Outro","otherUp","thumb-up"]],[["Não contém as informações de que eu preciso","missingTheInformationINeed","thumb-down"],["Muito complicado / etapas demais","tooComplicatedTooManySteps","thumb-down"],["Desatualizado","outOfDate","thumb-down"],["Problema na tradução","translationIssue","thumb-down"],["Problema com as amostras / o código","samplesCodeIssue","thumb-down"],["Outro","otherDown","thumb-down"]],["Última atualização 2025-07-27 UTC."],[],[],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\""]]