More test cases

This commit is contained in:
Fang-Pen Lin
2025-11-06 18:24:07 -08:00
parent 9e12d67e01
commit 3246b80c81
2 changed files with 18 additions and 2 deletions

View File

@@ -249,7 +249,10 @@ def step_impl(context: Context, email: str, kid: str, secret: str, account_var:
email=email,
external_account_binding=eab,
)
context.vars[account_var] = acme_client.new_account(registration)
try:
context.vars[account_var] = acme_client.new_account(registration)
except Exception:
context.vars["error"] = acme_client.new_account(registration)
@then("I register a new ACME account with email {email} without EAB")
@@ -259,7 +262,7 @@ def step_impl(context: Context, email: str):
email=email,
)
try:
acme_client.new_account(registration)
context.vars["error"] = acme_client.new_account(registration)
except Exception as exp:
context.vars["error"] = exp