1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-04-04 17:36:02 +00:00

WIP: temporarily disable failing eckhart tests

skip sd card test for eckhart
This commit is contained in:
Lukas Bielesch 2025-03-19 17:03:54 +01:00
parent a77be0fbb4
commit 4e6dc01d5c
87 changed files with 177 additions and 53 deletions

View File

@ -37,6 +37,7 @@ if TYPE_CHECKING:
from ..device_handler import BackgroundDeviceHandler
TX_CACHE_MAINNET = TxCache("Bitcoin")
TX_CACHE_TESTNET = TxCache("Testnet")
@ -86,6 +87,7 @@ def set_autolock_delay(device_handler: "BackgroundDeviceHandler", delay_ms: int)
@pytest.mark.setup_client(pin=PIN4)
@pytest.mark.models(skip=["eckhart"])
def test_autolock_interrupts_signing(device_handler: "BackgroundDeviceHandler"):
"""Autolock will lock the device that is waiting for the user
to confirm transaction."""
@ -141,6 +143,7 @@ def test_autolock_interrupts_signing(device_handler: "BackgroundDeviceHandler"):
@pytest.mark.setup_client(pin=PIN4)
@pytest.mark.models(skip=["eckhart"])
def test_autolock_does_not_interrupt_signing(device_handler: "BackgroundDeviceHandler"):
"""Autolock will NOT lock the device once transaction is confirmed."""
set_autolock_delay(device_handler, 10_000)
@ -439,6 +442,7 @@ def test_dryrun_enter_word_slowly(device_handler: "BackgroundDeviceHandler"):
@pytest.mark.setup_client(pin=PIN4)
@pytest.mark.models(skip=["eckhart"])
def test_autolock_does_not_interrupt_preauthorized(
device_handler: "BackgroundDeviceHandler",
):

View File

@ -27,6 +27,7 @@ from .. import common
if TYPE_CHECKING:
from ..device_handler import BackgroundDeviceHandler
pytestmark = pytest.mark.models(skip=["eckhart"])
PIN4 = "1234"

View File

@ -25,7 +25,7 @@ from ...input_flows import InputFlowShowAddressQRCode
pytestmark = [
pytest.mark.altcoin,
pytest.mark.binance,
pytest.mark.models("core"),
pytest.mark.models("core", skip=["eckhart"]),
pytest.mark.setup_client(
mnemonic="offer caution gift cross surge pretty orange during eye soldier popular holiday mention east eight office fashion ill parrot vault rent devote earth cousin"
),

View File

@ -27,7 +27,7 @@ BINANCE_PATH = parse_path("m/44h/714h/0h/0/0")
@pytest.mark.altcoin
@pytest.mark.binance
@pytest.mark.models("core")
@pytest.mark.models("core", skip=["eckhart"])
@pytest.mark.setup_client(
mnemonic="offer caution gift cross surge pretty orange during eye soldier popular holiday mention east eight office fashion ill parrot vault rent devote earth cousin"
)

View File

@ -103,7 +103,7 @@ BINANCE_TEST_VECTORS = [
@pytest.mark.altcoin
@pytest.mark.binance
@pytest.mark.models("core")
@pytest.mark.models("core", skip=["eckhart"])
@pytest.mark.setup_client(
mnemonic="offer caution gift cross surge pretty orange during eye soldier popular holiday mention east eight office fashion ill parrot vault rent devote earth cousin"
)

View File

@ -34,6 +34,8 @@ from .signtx import (
request_output,
)
pytestmark = pytest.mark.models(skip=["eckhart"])
B = messages.ButtonRequestType
TX_CACHE_TESTNET = TxCache("Testnet")

View File

@ -50,7 +50,7 @@ FAKE_TXHASH_203416 = bytes.fromhex(
"203416cda0f2f7f0b4d666c6160190126edb07236394e927bf605821866f2a71"
)
pytestmark = pytest.mark.altcoin
pytestmark = [pytest.mark.altcoin, pytest.mark.models(skip=["eckhart"])]
def test_send_bch_change(client: Client):

View File

@ -47,7 +47,7 @@ FAKE_TXHASH_a63dbe = bytes.fromhex(
"a63dbedd8cd284bf0d3c468e84b9b0eeb14c3a08824eab8f80e7723a299f30db"
)
pytestmark = [pytest.mark.altcoin, pytest.mark.models("t1b1", "t2t1")]
pytestmark = [pytest.mark.altcoin, pytest.mark.models("t1b1", "t2t1", skip=["eckhart"])]
# All data taken from T1

View File

@ -40,7 +40,7 @@ TXHASH_15575a = bytes.fromhex(
"15575a1c874bd60a819884e116c42e6791c8283ce1fc3b79f0d18531a61bbb8a"
)
pytestmark = [pytest.mark.altcoin, pytest.mark.models("t1b1", "t2t1")]
pytestmark = [pytest.mark.altcoin, pytest.mark.models("t1b1", "t2t1", skip=["eckhart"])]
def test_send_dash(client: Client):

View File

@ -53,7 +53,7 @@ FAKE_TXHASH_1f00fc = bytes.fromhex(
pytestmark = [
pytest.mark.altcoin,
pytest.mark.decred,
pytest.mark.models("t1b1", "t2t1"),
pytest.mark.models("t1b1", "t2t1", skip=["eckhart"]),
]

View File

@ -23,6 +23,8 @@ from trezorlib.tools import H_
from ...input_flows import InputFlowShowXpubQRCode
pytestmark = pytest.mark.models(skip=["eckhart"])
VECTORS_DESCRIPTORS = ( # coin, account, script_type, descriptors
(
"Bitcoin",

View File

@ -28,6 +28,8 @@ TXHASH_8a34cc = bytes.fromhex(
"8a34ccceaf138fd14398303340afb37871cb0ea6719ceba315172edb9ff6d625"
)
pytestmark = pytest.mark.models(skip=["eckhart"])
@pytest.mark.altcoin
def test_spend_lelantus(client: Client):

View File

@ -24,7 +24,7 @@ TXHASH_33043a = bytes.fromhex(
"33043a28cfa924ca701983e628615559ed2b68c0c14eb706b3970fa8dd4b5209"
)
pytestmark = pytest.mark.altcoin
pytestmark = [pytest.mark.altcoin, pytest.mark.models(skip=["eckhart"])]
def test_send_p2tr(client: Client):

View File

@ -26,6 +26,8 @@ from ... import bip32
from ...common import is_core
from ...input_flows import InputFlowConfirmAllWarnings
pytestmark = pytest.mark.models(skip=["eckhart"])
def getmultisig(chain, nr, xpubs):
return messages.MultisigRedeemScriptType(

View File

@ -24,6 +24,8 @@ from trezorlib.tools import parse_path
from ...common import is_core
from ...input_flows import InputFlowConfirmAllWarnings
pytestmark = pytest.mark.models(skip=["eckhart"])
def test_show_segwit(client: Client):
assert (

View File

@ -21,6 +21,8 @@ from trezorlib.debuglink import TrezorClientDebugLink as Client
from trezorlib.exceptions import TrezorFailure
from trezorlib.tools import parse_path
pytestmark = pytest.mark.models(skip=["eckhart"])
VECTORS = ( # coin, path, script_type, address
(
"Testnet",

View File

@ -28,6 +28,8 @@ from ...input_flows import (
InputFlowShowMultisigXPUBs,
)
pytestmark = pytest.mark.models(skip=["eckhart"])
VECTORS = ( # path, script_type, address
(
"m/44h/0h/12h/0/0",

View File

@ -21,6 +21,8 @@ from trezorlib.debuglink import TrezorClientDebugLink as Client
from trezorlib.exceptions import TrezorFailure
from trezorlib.tools import parse_path
pytestmark = pytest.mark.models(skip=["eckhart"])
def test_p2wpkh_ownership_id(client: Client):
ownership_id = btc.get_ownership_id(

View File

@ -24,6 +24,8 @@ from trezorlib.tools import parse_path
from ... import bip32
from ...input_flows import InputFlowShowXpubQRCode
pytestmark = pytest.mark.models(skip=["eckhart"])
VECTORS_BITCOIN = ( # coin_name, xpub_magic, path, xpub
(
"Bitcoin",

View File

@ -21,6 +21,8 @@ from trezorlib.debuglink import TrezorClientDebugLink as Client
from trezorlib.exceptions import TrezorFailure
from trezorlib.tools import parse_path
pytestmark = pytest.mark.models(skip=["eckhart"])
PATH_PRIVATE = parse_path("m/17h/0h/1h/2h/3h")
PATH_PUBLIC = parse_path("m/17h/0h/1h/2h/3h/42")

View File

@ -39,7 +39,7 @@ TXHASH_45aeb9 = bytes.fromhex(
"45aeb9af884b4082104b0212c5f40ffca8f0127e627a05810b69f0bad777678c"
)
pytestmark = pytest.mark.altcoin
pytestmark = [pytest.mark.altcoin, pytest.mark.models(skip=["eckhart"])]
def test_legacy(client: Client):

View File

@ -40,7 +40,11 @@ TXHASH_7b28bd = bytes.fromhex(
"7b28bd91119e9776f0d4ebd80e570165818a829bbf4477cd1afe5149dbcd34b1"
)
pytestmark = [pytest.mark.altcoin, pytest.mark.komodo]
pytestmark = [
pytest.mark.altcoin,
pytest.mark.komodo,
pytest.mark.models(skip=["eckhart"]),
]
def test_one_one_fee_sapling(client: Client):

View File

@ -50,7 +50,7 @@ TXHASH_0d5b56 = bytes.fromhex(
"0d5b5648d47b5650edea1af3d47bbe5624213abb577cf1b1c96f98321f75cdbc"
)
pytestmark = pytest.mark.multisig
pytestmark = [pytest.mark.multisig, pytest.mark.models(skip=["eckhart"])]
@pytest.mark.multisig

View File

@ -35,7 +35,11 @@ from .signtx import (
B = messages.ButtonRequestType
pytestmark = [pytest.mark.multisig, pytest.mark.setup_client(mnemonic=MNEMONIC12)]
pytestmark = [
pytest.mark.multisig,
pytest.mark.setup_client(mnemonic=MNEMONIC12),
pytest.mark.models(skip=["eckhart"]),
]
NODE_EXT1 = bip32.deserialize(

View File

@ -24,6 +24,8 @@ from ...common import is_core
from ...input_flows import InputFlowConfirmAllWarnings
from .signtx import forge_prevtx
pytestmark = pytest.mark.models(skip=["eckhart"])
VECTORS = ( # path, script_types
# GreenAddress A m/[1,4]/address_index
(

View File

@ -31,6 +31,8 @@ from .signtx import (
request_output,
)
pytestmark = pytest.mark.models(skip=["eckhart"])
B = messages.ButtonRequestType
TX_API = TxCache("Bitcoin")
TX_API_TESTNET = TxCache("Testnet")

View File

@ -23,6 +23,8 @@ from trezorlib.tools import parse_path
from ...tx_cache import TxCache
pytestmark = pytest.mark.models(skip=["eckhart"])
TX_CACHE = TxCache("Peercoin")
TXHASH_41b29a = bytes.fromhex(

View File

@ -35,6 +35,8 @@ from ...input_flows import (
S = messages.InputScriptType
pytestmark = pytest.mark.models(skip=["eckhart"])
def case(
id: str,

View File

@ -42,6 +42,8 @@ from .signtx import (
request_output,
)
pytestmark = pytest.mark.models(skip=["eckhart"])
B = messages.ButtonRequestType
TX_CACHE_TESTNET = TxCache("Testnet")

View File

@ -23,6 +23,8 @@ from trezorlib.tools import parse_path
from ...tx_cache import TxCache
from .signtx import assert_tx_matches
pytestmark = pytest.mark.models(skip=["eckhart"])
TX_API = TxCache("Testnet")
TXHASH_b36780 = bytes.fromhex(

View File

@ -32,6 +32,8 @@ from .signtx import (
request_output,
)
pytestmark = pytest.mark.models(skip=["eckhart"])
B = messages.ButtonRequestType
TX_CACHE_TESTNET = TxCache("Testnet")

View File

@ -25,6 +25,8 @@ from ...common import is_core
from ...input_flows import InputFlowConfirmAllWarnings
from .signtx import forge_prevtx, request_input
pytestmark = pytest.mark.models(skip=["eckhart"])
B = messages.ButtonRequestType
# address at seed "all all all..." path m/44h/0h/0h/0/0

View File

@ -13,6 +13,7 @@
#
# You should have received a copy of the License along with this library.
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
import pytest
from trezorlib import btc, messages
from trezorlib.debuglink import TrezorClientDebugLink as Client
@ -21,6 +22,8 @@ from trezorlib.tools import parse_path
from ...tx_cache import TxCache
from .signtx import assert_tx_matches
pytestmark = pytest.mark.models(skip=["eckhart"])
TX_API = TxCache("Testnet")
TXHASH_357728 = bytes.fromhex(

View File

@ -33,7 +33,7 @@ PREV_HASH, PREV_TX = forge_prevtx([(INPUT_ADDRESS, 12_300_000)], network="testne
PREV_TXES = {PREV_HASH: PREV_TX}
pytestmark = [pytest.mark.models("core"), pytest.mark.experimental]
pytestmark = [pytest.mark.models("core", skip=["eckhart"]), pytest.mark.experimental]
def case(id, *args, altcoin: bool = False, models: str | None = None):

View File

@ -12,6 +12,8 @@ from ...common import is_core
from ...input_flows import InputFlowConfirmAllWarnings
from .signtx import forge_prevtx
pytestmark = pytest.mark.models(skip=["eckhart"])
# address at seed "all all all..." path m/44h/0h/0h/0/0
INPUT_ADDRESS = "1JAd7XCBzGudGpJQSDSfpmJhiygtLQWaGL"
PREV_HASH, PREV_TX = forge_prevtx([(INPUT_ADDRESS, 100_000_000)])

View File

@ -32,6 +32,8 @@ from .signtx import (
request_output,
)
pytestmark = pytest.mark.models(skip=["eckhart"])
B = messages.ButtonRequestType
TX_CACHE_TESTNET = TxCache("Testnet")

View File

@ -32,6 +32,8 @@ from .signtx import (
request_output,
)
pytestmark = pytest.mark.models(skip=["eckhart"])
B = messages.ButtonRequestType
TX_API_TESTNET = TxCache("Testnet")

View File

@ -32,6 +32,8 @@ from .signtx import (
request_output,
)
pytestmark = pytest.mark.models(skip=["eckhart"])
B = messages.ButtonRequestType
TX_API_TESTNET = TxCache("Testnet")

View File

@ -31,6 +31,8 @@ from .signtx import (
request_output,
)
pytestmark = pytest.mark.models(skip=["eckhart"])
B = messages.ButtonRequestType
TX_API = TxCache("Testnet")

View File

@ -23,6 +23,8 @@ from trezorlib.debuglink import TrezorClientDebugLink as Client
from ...input_flows import InputFlowSignVerifyMessageLong
pytestmark = pytest.mark.models(skip=["eckhart"])
@pytest.mark.models("legacy")
def test_message_long_legacy(client: Client):

View File

@ -14,9 +14,13 @@
# You should have received a copy of the License along with this library.
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
import pytest
from trezorlib import btc
from trezorlib.debuglink import TrezorClientDebugLink as Client
pytestmark = pytest.mark.models(skip=["eckhart"])
def test_message_long(client: Client):
ret = btc.verify_message(

View File

@ -14,9 +14,13 @@
# You should have received a copy of the License along with this library.
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
import pytest
from trezorlib import btc
from trezorlib.debuglink import TrezorClientDebugLink as Client
pytestmark = pytest.mark.models(skip=["eckhart"])
def test_message_long(client: Client):
ret = btc.verify_message(

View File

@ -54,7 +54,11 @@ FAKE_TXHASH_v4 = bytes.fromhex(
"cb3c1190798dc7909f182ae9ae23e7c473d849ba5b933eb34538b9957fa87975"
)
pytestmark = [pytest.mark.altcoin, pytest.mark.zcash]
pytestmark = [
pytest.mark.altcoin,
pytest.mark.zcash,
pytest.mark.models(skip=["eckhart"]),
]
def test_v3_not_supported(client: Client):

View File

@ -32,7 +32,7 @@ from ...input_flows import InputFlowShowXpubQRCode
pytestmark = [
pytest.mark.altcoin,
pytest.mark.cardano,
pytest.mark.models("core"),
pytest.mark.models("core", skip=["eckhart"]),
]

View File

@ -27,7 +27,7 @@ from ...common import MNEMONIC_SLIP39_BASIC_20_3of6
pytestmark = [
pytest.mark.altcoin,
pytest.mark.cardano,
pytest.mark.models("core"),
pytest.mark.models("core", skip=["eckhart"]),
]
ADDRESS_N = parse_path("m/1852h/1815h/0h")

View File

@ -25,7 +25,7 @@ from ...common import parametrize_using_common_fixtures
pytestmark = [
pytest.mark.altcoin,
pytest.mark.cardano,
pytest.mark.models("core"),
pytest.mark.models("core", skip=["eckhart"]),
]

View File

@ -27,7 +27,7 @@ from ...input_flows import InputFlowConfirmAllWarnings
pytestmark = [
pytest.mark.altcoin,
pytest.mark.cardano,
pytest.mark.models("core"),
pytest.mark.models("core", skip=["eckhart"]),
]

View File

@ -26,7 +26,7 @@ from ...input_flows import InputFlowShowXpubQRCode
@pytest.mark.altcoin
@pytest.mark.eos
@pytest.mark.models("t2t1")
@pytest.mark.models("t2t1", skip=["eckhart"])
@pytest.mark.setup_client(mnemonic=MNEMONIC12)
def test_eos_get_public_key(client: Client):
with client:

View File

@ -29,7 +29,7 @@ ADDRESS_N = parse_path("m/44h/194h/0h/0/0")
pytestmark = [
pytest.mark.altcoin,
pytest.mark.eos,
pytest.mark.models("t2t1"),
pytest.mark.models("t2t1", skip=["eckhart"]),
pytest.mark.setup_client(mnemonic=MNEMONIC12),
]

View File

@ -13,7 +13,11 @@ from ...input_flows import InputFlowConfirmAllWarnings
from . import common
from .test_sign_typed_data import DATA as TYPED_DATA
pytestmark = [pytest.mark.altcoin, pytest.mark.ethereum]
pytestmark = [
pytest.mark.altcoin,
pytest.mark.ethereum,
pytest.mark.models(skip=["eckhart"]),
]
ERC20_OPERATION = "a9059cbb000000000000000000000000574bbb36871ba6b78e27f4b4dcfb76ea0091880b0000000000000000000000000000000000000000000000000000000000000123"
ERC20_BUILTIN_TOKEN = "0xdac17f958d2ee523a2206206994597c13d831ec7" # USDT

View File

@ -13,7 +13,11 @@ from trezorlib.tools import parse_path
from .common import make_defs, make_network, make_payload, make_token, sign_payload
from .test_definitions import DEFAULT_ERC20_PARAMS, ERC20_FAKE_ADDRESS
pytestmark = [pytest.mark.altcoin, pytest.mark.ethereum]
pytestmark = [
pytest.mark.altcoin,
pytest.mark.ethereum,
pytest.mark.models(skip=["eckhart"]),
]
def fails(client: Client, network: bytes, match: str) -> None:

View File

@ -23,7 +23,11 @@ from trezorlib.tools import parse_path
from ...common import parametrize_using_common_fixtures
from ...input_flows import InputFlowShowAddressQRCode
pytestmark = [pytest.mark.altcoin, pytest.mark.ethereum]
pytestmark = [
pytest.mark.altcoin,
pytest.mark.ethereum,
pytest.mark.models(skip=["eckhart"]),
]
@parametrize_using_common_fixtures("ethereum/getaddress.json")

View File

@ -23,7 +23,11 @@ from trezorlib.tools import parse_path
from ...common import parametrize_using_common_fixtures
pytestmark = [pytest.mark.altcoin, pytest.mark.ethereum]
pytestmark = [
pytest.mark.altcoin,
pytest.mark.ethereum,
pytest.mark.models(skip=["eckhart"]),
]
@parametrize_using_common_fixtures("ethereum/getpublickey.json")

View File

@ -23,7 +23,11 @@ from trezorlib.tools import parse_path
from ...common import parametrize_using_common_fixtures
from ...input_flows import InputFlowEIP712Cancel, InputFlowEIP712ShowMore
pytestmark = [pytest.mark.altcoin, pytest.mark.ethereum]
pytestmark = [
pytest.mark.altcoin,
pytest.mark.ethereum,
pytest.mark.models(skip=["eckhart"]),
]
@pytest.mark.models("core")

View File

@ -24,7 +24,11 @@ from trezorlib.tools import parse_path
from ...common import parametrize_using_common_fixtures
from ...input_flows import InputFlowSignVerifyMessageLong
pytestmark = [pytest.mark.altcoin, pytest.mark.ethereum]
pytestmark = [
pytest.mark.altcoin,
pytest.mark.ethereum,
pytest.mark.models(skip=["eckhart"]),
]
@parametrize_using_common_fixtures("ethereum/signmessage.json")

View File

@ -37,7 +37,11 @@ from .common import encode_network
TO_ADDR = "0x1d1c328764a41bda0492b66baa30c4a339ff85ef"
pytestmark = [pytest.mark.altcoin, pytest.mark.ethereum]
pytestmark = [
pytest.mark.altcoin,
pytest.mark.ethereum,
pytest.mark.models(skip=["eckhart"]),
]
def make_defs(parameters: dict) -> messages.EthereumDefinitions:

View File

@ -41,7 +41,7 @@ TEST_VECTORS = [
pytestmark = [
pytest.mark.altcoin,
pytest.mark.monero,
pytest.mark.models("core"),
pytest.mark.models("core", skip=["eckhart"]),
pytest.mark.setup_client(mnemonic=MNEMONIC12),
]

View File

@ -25,7 +25,7 @@ from ...common import MNEMONIC12
@pytest.mark.altcoin
@pytest.mark.monero
@pytest.mark.models("core")
@pytest.mark.models("core", skip=["eckhart"])
@pytest.mark.setup_client(mnemonic=MNEMONIC12)
def test_monero_getwatchkey(client: Client):
res = monero.get_watch_key(client, parse_path("m/44h/128h/0h"))

View File

@ -25,7 +25,7 @@ from ...common import MNEMONIC12
@pytest.mark.altcoin
@pytest.mark.nem
@pytest.mark.models("t1b1", "t2t1")
@pytest.mark.models("t1b1", "t2t1", skip=["eckhart"])
@pytest.mark.setup_client(mnemonic=MNEMONIC12)
@pytest.mark.parametrize("chunkify", (True, False))
def test_nem_getaddress(client: Client, chunkify: bool):

View File

@ -27,7 +27,7 @@ ADDRESS_N = parse_path("m/44h/1h/0h/0h/0h")
pytestmark = [
pytest.mark.altcoin,
pytest.mark.nem,
pytest.mark.models("t1b1", "t2t1"),
pytest.mark.models("t1b1", "t2t1", skip=["eckhart"]),
pytest.mark.setup_client(mnemonic=MNEMONIC12),
]

View File

@ -25,7 +25,7 @@ from ...common import MNEMONIC12
pytestmark = [
pytest.mark.altcoin,
pytest.mark.nem,
pytest.mark.models("t1b1", "t2t1"),
pytest.mark.models("t1b1", "t2t1", skip=["eckhart"]),
pytest.mark.setup_client(mnemonic=MNEMONIC12),
]

View File

@ -25,7 +25,7 @@ from ...common import MNEMONIC12
pytestmark = [
pytest.mark.altcoin,
pytest.mark.nem,
pytest.mark.models("t1b1", "t2t1"),
pytest.mark.models("t1b1", "t2t1", skip=["eckhart"]),
pytest.mark.setup_client(mnemonic=MNEMONIC12),
]

View File

@ -25,7 +25,7 @@ from ...common import MNEMONIC12, is_core
pytestmark = [
pytest.mark.altcoin,
pytest.mark.nem,
pytest.mark.models("t1b1", "t2t1"),
pytest.mark.models("t1b1", "t2t1", skip=["eckhart"]),
pytest.mark.setup_client(mnemonic=MNEMONIC12),
]

View File

@ -22,7 +22,7 @@ import pytest
from trezorlib import messages, nostr
from trezorlib.tools import parse_path
pytestmark = [pytest.mark.altcoin, pytest.mark.models("core")]
pytestmark = [pytest.mark.altcoin, pytest.mark.models("core", skip=["eckhart"])]
# test data from NIP-06: https://github.com/nostr-protocol/nips/blob/master/06.md

View File

@ -31,7 +31,7 @@ CUSTOM_MNEMONIC = (
pytestmark = [
pytest.mark.altcoin,
pytest.mark.ripple,
pytest.mark.models("core"),
pytest.mark.models("core", skip=["eckhart"]),
]
# data from https://iancoleman.io/bip39/

View File

@ -24,7 +24,7 @@ from trezorlib.tools import parse_path
pytestmark = [
pytest.mark.altcoin,
pytest.mark.ripple,
pytest.mark.models("core"),
pytest.mark.models("core", skip=["eckhart"]),
]

View File

@ -25,7 +25,7 @@ from ...common import parametrize_using_common_fixtures
pytestmark = [
pytest.mark.altcoin,
pytest.mark.solana,
pytest.mark.models("core"),
pytest.mark.models("core", skip=["eckhart"]),
]

View File

@ -25,7 +25,7 @@ from ...common import parametrize_using_common_fixtures
pytestmark = [
pytest.mark.altcoin,
pytest.mark.solana,
pytest.mark.models("core"),
pytest.mark.models("core", skip=["eckhart"]),
]

View File

@ -29,7 +29,7 @@ from .construct.transaction import Message, RawInstruction
pytestmark = [
pytest.mark.altcoin,
pytest.mark.solana,
pytest.mark.models("core"),
pytest.mark.models("core", skip=["eckhart"]),
]

View File

@ -64,6 +64,7 @@ from ...input_flows import InputFlowShowAddressQRCode
pytestmark = [
pytest.mark.altcoin,
pytest.mark.stellar,
pytest.mark.models(skip=["eckhart"]),
]

View File

@ -9,7 +9,7 @@ from trezorlib.debuglink import TrezorClientDebugLink as Client
from ..common import compact_size
pytestmark = pytest.mark.models("safe")
pytestmark = pytest.mark.models("safe", skip=["eckhart"])
ROOT_PUBLIC_KEY = {
models.T2B1: bytes.fromhex(

View File

@ -23,6 +23,8 @@ from trezorlib.debuglink import LayoutType
from trezorlib.debuglink import TrezorClientDebugLink as Client
from trezorlib.tools import parse_path
pytestmark = pytest.mark.models(skip=["eckhart"])
PIN = "1234"

View File

@ -70,7 +70,7 @@ def test_cancel_message_via_initialize(client: Client, message):
assert isinstance(resp, m.Features)
@pytest.mark.models("core")
@pytest.mark.models("core", skip=["eckhart"])
def test_cancel_on_paginated(client: Client):
"""Check that device is responsive on paginated screen. See #1708."""
# In #1708, the device would ignore USB (or UDP) events while waiting for the user

View File

@ -5,6 +5,8 @@ import pytest
from trezorlib import firmware, models
from trezorlib.debuglink import TrezorClientDebugLink as Client
pytestmark = pytest.mark.models(skip=["eckhart"])
# size of FIRMWARE_AREA, see core/embed/models/model_*_layout.c
FIRMWARE_LENGTHS = {
models.T1B1: 7 * 128 * 1024 + 64 * 1024,

View File

@ -35,7 +35,7 @@ from ..translations import (
sign_blob,
)
pytestmark = pytest.mark.models("core")
pytestmark = pytest.mark.models("core", skip=["eckhart"])
MAX_DATA_LENGTH = {

View File

@ -203,7 +203,7 @@ def test_apply_homescreen_toif(client: Client):
device.apply_settings(client, homescreen=img)
@pytest.mark.models(skip=["legacy", "safe3"])
@pytest.mark.models(skip=["legacy", "safe3", "eckhart"])
def test_apply_homescreen_jpeg(client: Client):
with open(HERE / "test_bg.jpg", "rb") as f:
img = f.read()
@ -325,6 +325,7 @@ def test_apply_homescreen(client: Client):
@pytest.mark.setup_client(pin=None)
@pytest.mark.models(skip="eckhart")
def test_safety_checks(client: Client):
def get_bad_address():
btc.get_address(client, "Bitcoin", parse_path("m/44h"), show_display=True)

View File

@ -68,6 +68,8 @@ def test_backup_bip39(client: Client):
def test_backup_slip39_basic(client: Client, click_info: bool):
if click_info and client.layout_type is LayoutType.Caesar:
pytest.skip("click_info not implemented on T2B1")
if click_info and client.layout_type is LayoutType.Eckhart:
pytest.skip("click_info not yet implemented on T3W1")
assert client.features.backup_availability == messages.BackupAvailability.Required
@ -127,6 +129,8 @@ def test_backup_slip39_single(client: Client):
def test_backup_slip39_advanced(client: Client, click_info: bool):
if click_info and client.layout_type is LayoutType.Caesar:
pytest.skip("click_info not implemented on T2B1")
if click_info and client.layout_type is LayoutType.Eckhart:
pytest.skip("click_info not yet implemented on T3W1")
assert client.features.backup_availability == messages.BackupAvailability.Required

View File

@ -23,7 +23,10 @@ from trezorlib.messages import SdProtectOperationType as Op
from ..common import MNEMONIC12
pytestmark = [pytest.mark.models("core", skip="safe3"), pytest.mark.sd_card]
pytestmark = [
pytest.mark.models("core", skip=["safe3", "eckhart"]),
pytest.mark.sd_card,
]
def test_enable_disable(client: Client):

View File

@ -21,7 +21,7 @@ from trezorlib.debuglink import TrezorClientDebugLink as Client
@pytest.mark.setup_client(uninitialized=True)
@pytest.mark.models("safe")
@pytest.mark.models("safe", skip=["eckhart"])
def test_tutorial(client: Client):
device.show_device_tutorial(client)
assert client.features.initialized is False

View File

@ -279,6 +279,7 @@ def test_recovery_device(client: Client):
)
@pytest.mark.models(skip=["eckhart"])
def test_sign_message(client: Client):
_assert_protection(client)
with client:
@ -320,7 +321,7 @@ def test_verify_message_t1(client: Client):
)
@pytest.mark.models("core")
@pytest.mark.models("core", skip=["eckhart"])
def test_verify_message_t2(client: Client):
_assert_protection(client)
with client:
@ -345,6 +346,7 @@ def test_verify_message_t2(client: Client):
)
@pytest.mark.models(skip=["eckhart"])
def test_signtx(client: Client):
# input tx: 50f6f1209ca92d7359564be803cb2c932cde7d370f7cee50fd1fad6790f6206d

View File

@ -23,7 +23,7 @@ from trezorlib.messages import SdProtectOperationType as Op
from .. import translations as TR
pytestmark = pytest.mark.models("core", skip="safe3")
pytestmark = pytest.mark.models("core", skip=["safe3", "eckhart"])
@pytest.mark.sd_card(formatted=False)

View File

@ -25,7 +25,7 @@ from ...input_flows import InputFlowShowAddressQRCode
pytestmark = [
pytest.mark.altcoin,
pytest.mark.tezos,
pytest.mark.models("core"),
pytest.mark.models("core", skip=["eckhart"]),
]
TEST_VECTORS = [

View File

@ -23,7 +23,7 @@ from trezorlib.tools import parse_path
@pytest.mark.altcoin
@pytest.mark.tezos
@pytest.mark.models("core")
@pytest.mark.models("core", skip=["eckhart"])
def test_tezos_get_public_key(client: Client):
path = parse_path("m/44h/1729h/0h")
pk = get_public_key(client, path)

View File

@ -28,7 +28,7 @@ TEZOS_PATH_15 = parse_path("m/44h/1729h/15h")
pytestmark = [
pytest.mark.altcoin,
pytest.mark.tezos,
pytest.mark.models("core"),
pytest.mark.models("core", skip=["eckhart"]),
]

View File

@ -27,7 +27,7 @@ from .data_webauthn import CRED1, CRED2, CRED3, CREDS
RK_CAPACITY = 100
@pytest.mark.models("core")
@pytest.mark.models("core", skip=["eckhart"])
@pytest.mark.altcoin
@pytest.mark.setup_client(mnemonic=MNEMONIC12)
def test_add_remove(client: Client):

View File

@ -21,6 +21,7 @@ from trezorlib.debuglink import TrezorClientDebugLink as Client
@pytest.mark.altcoin
@pytest.mark.models(skip=["eckhart"])
def test_u2f_counter(client: Client):
assert fido.get_next_counter(client) == 0
assert fido.get_next_counter(client) == 1

View File

@ -50,7 +50,11 @@ TXHASH_4b6cec = bytes.fromhex(
VERSION_GROUP_ID = 0x26A7270A
BRANCH_ID = 0xC2D6D0B4
pytestmark = [pytest.mark.altcoin, pytest.mark.zcash]
pytestmark = [
pytest.mark.altcoin,
pytest.mark.zcash,
pytest.mark.models(skip=["eckhart"]),
]
def test_version_group_id_missing(client: Client):