Skip to content

Commit db6c7c3

Browse files
Allow prod pki usage in Ragger
1 parent 953b870 commit db6c7c3

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

src/ragger/conftest/base_conftest.py

+17-5
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ def pytest_addoption(parser):
3838
default=False,
3939
help="Do not compare the snapshots during testing, but instead save the live "
4040
"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")
4145
parser.addoption("--log_apdu_file", action="store", default=None, help="Log the APDU in a file")
4246
parser.addoption("--seed", action="store", default=None, help="Set a custom seed")
4347

@@ -68,6 +72,11 @@ def cli_user_seed(pytestconfig):
6872
return pytestconfig.getoption("seed")
6973

7074

75+
@pytest.fixture(scope="session")
76+
def pki_prod(pytestconfig):
77+
return pytestconfig.getoption("pki_prod")
78+
79+
7180
@pytest.fixture(scope="session")
7281
def root_pytest_dir(request) -> Path:
7382
return Path(request.config.rootpath).resolve()
@@ -142,12 +151,14 @@ def pytest_generate_tests(metafunc):
142151
metafunc.parametrize("firmware", fw_list, ids=ids, scope="session")
143152

144153

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,
146155
cli_user_seed: str, additional_args: List[str]):
147156
speculos_args = additional_args.copy()
148157

149158
if display:
150159
speculos_args += ["--display", "qt"]
160+
if pki_prod:
161+
speculos_args += ["-p"]
151162

152163
device = firmware.name
153164
if device == "nanosp":
@@ -206,7 +217,7 @@ def prepare_speculos_args(root_pytest_dir: Path, firmware: Firmware, display: bo
206217
# instantiated, and the tests will either run on Speculos or on a physical
207218
# device depending on the backend
208219
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,
210221
additional_speculos_arguments: List[str]) -> BackendInterface:
211222
if backend_name.lower() == "ledgercomm":
212223
return LedgerCommBackend(firmware=firmware,
@@ -217,7 +228,7 @@ def create_backend(root_pytest_dir: Path, backend_name: str, firmware: Firmware,
217228
return LedgerWalletBackend(firmware=firmware, log_apdu_file=log_apdu_file, with_gui=display)
218229
elif backend_name.lower() == "speculos":
219230
main_app_path, speculos_args = prepare_speculos_args(root_pytest_dir, firmware, display,
220-
cli_user_seed,
231+
pki_prod, cli_user_seed,
221232
additional_speculos_arguments)
222233
return SpeculosBackend(main_app_path,
223234
firmware=firmware,
@@ -232,9 +243,10 @@ def create_backend(root_pytest_dir: Path, backend_name: str, firmware: Firmware,
232243
# before trying to find the binary
233244
@pytest.fixture(scope=conf.OPTIONAL.BACKEND_SCOPE)
234245
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,
236248
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,
238250
cli_user_seed, additional_speculos_arguments) as b:
239251
if backend_name.lower() != "speculos" and conf.OPTIONAL.APP_NAME:
240252
# Make sure the app is restarted as this is what is requested by the fixture scope

0 commit comments

Comments
 (0)