@@ -38,6 +38,10 @@ def pytest_addoption(parser):
38
38
default = False ,
39
39
help = "Do not compare the snapshots during testing, but instead save the live "
40
40
"ones. Will only work with 'speculos' as the backend" )
41
+ parser .addoption ("--pki_prod" ,
42
+ action = "store_true" ,
43
+ default = False ,
44
+ help = "Have Speculos accept prod PKI certificates instead of test" )
41
45
parser .addoption ("--log_apdu_file" , action = "store" , default = None , help = "Log the APDU in a file" )
42
46
parser .addoption ("--seed" , action = "store" , default = None , help = "Set a custom seed" )
43
47
@@ -68,6 +72,11 @@ def cli_user_seed(pytestconfig):
68
72
return pytestconfig .getoption ("seed" )
69
73
70
74
75
+ @pytest .fixture (scope = "session" )
76
+ def pki_prod (pytestconfig ):
77
+ return pytestconfig .getoption ("pki_prod" )
78
+
79
+
71
80
@pytest .fixture (scope = "session" )
72
81
def root_pytest_dir (request ) -> Path :
73
82
return Path (request .config .rootpath ).resolve ()
@@ -142,12 +151,14 @@ def pytest_generate_tests(metafunc):
142
151
metafunc .parametrize ("firmware" , fw_list , ids = ids , scope = "session" )
143
152
144
153
145
- def prepare_speculos_args (root_pytest_dir : Path , firmware : Firmware , display : bool ,
154
+ def prepare_speculos_args (root_pytest_dir : Path , firmware : Firmware , display : bool , pki_prod : bool ,
146
155
cli_user_seed : str , additional_args : List [str ]):
147
156
speculos_args = additional_args .copy ()
148
157
149
158
if display :
150
159
speculos_args += ["--display" , "qt" ]
160
+ if pki_prod :
161
+ speculos_args += ["-p" ]
151
162
152
163
device = firmware .name
153
164
if device == "nanosp" :
@@ -206,7 +217,7 @@ def prepare_speculos_args(root_pytest_dir: Path, firmware: Firmware, display: bo
206
217
# instantiated, and the tests will either run on Speculos or on a physical
207
218
# device depending on the backend
208
219
def create_backend (root_pytest_dir : Path , backend_name : str , firmware : Firmware , display : bool ,
209
- log_apdu_file : Optional [Path ], cli_user_seed : str ,
220
+ pki_prod : bool , log_apdu_file : Optional [Path ], cli_user_seed : str ,
210
221
additional_speculos_arguments : List [str ]) -> BackendInterface :
211
222
if backend_name .lower () == "ledgercomm" :
212
223
return LedgerCommBackend (firmware = firmware ,
@@ -217,7 +228,7 @@ def create_backend(root_pytest_dir: Path, backend_name: str, firmware: Firmware,
217
228
return LedgerWalletBackend (firmware = firmware , log_apdu_file = log_apdu_file , with_gui = display )
218
229
elif backend_name .lower () == "speculos" :
219
230
main_app_path , speculos_args = prepare_speculos_args (root_pytest_dir , firmware , display ,
220
- cli_user_seed ,
231
+ pki_prod , cli_user_seed ,
221
232
additional_speculos_arguments )
222
233
return SpeculosBackend (main_app_path ,
223
234
firmware = firmware ,
@@ -232,9 +243,10 @@ def create_backend(root_pytest_dir: Path, backend_name: str, firmware: Firmware,
232
243
# before trying to find the binary
233
244
@pytest .fixture (scope = conf .OPTIONAL .BACKEND_SCOPE )
234
245
def backend (skip_tests_for_unsupported_devices , root_pytest_dir : Path , backend_name : str ,
235
- firmware : Firmware , display : bool , log_apdu_file : Optional [Path ], cli_user_seed : str ,
246
+ firmware : Firmware , display : bool , pki_prod : bool , log_apdu_file : Optional [Path ],
247
+ cli_user_seed : str ,
236
248
additional_speculos_arguments : List [str ]) -> Generator [BackendInterface , None , None ]:
237
- with create_backend (root_pytest_dir , backend_name , firmware , display , log_apdu_file ,
249
+ with create_backend (root_pytest_dir , backend_name , firmware , display , pki_prod , log_apdu_file ,
238
250
cli_user_seed , additional_speculos_arguments ) as b :
239
251
if backend_name .lower () != "speculos" and conf .OPTIONAL .APP_NAME :
240
252
# Make sure the app is restarted as this is what is requested by the fixture scope
0 commit comments