From dbe5283e1f0eb1fef42f18ba8f1b926616b78260 Mon Sep 17 00:00:00 2001 From: Conor Patrick Date: Wed, 20 Mar 2019 21:06:18 -0400 Subject: [PATCH] test solo commands on fido2 layer --- tools/ctap_test.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/ctap_test.py b/tools/ctap_test.py index 126e51a..7b42197 100755 --- a/tools/ctap_test.py +++ b/tools/ctap_test.py @@ -1799,6 +1799,11 @@ class Tester: except ApduError: pass + sc.exchange = sc.exchange_fido2 + with Test("Test Solo version and random commands with fido2 layer"): + assert len(sc.solo_version()) == 3 + sc.get_rng() + def test_bootloader(self,): sc = SoloClient() sc.find_device(self.dev)