1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-29 19:08:12 +00:00
trezor-firmware/tests/device_tests/test_msg_sd_protect.py

98 lines
3.1 KiB
Python
Raw Normal View History

# This file is part of the Trezor project.
#
# Copyright (C) 2012-2019 SatoshiLabs and contributors
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# as published by the Free Software Foundation.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# 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
2019-10-21 10:12:03 +00:00
from trezorlib import debuglink, device
2024-11-15 16:31:22 +00:00
from trezorlib.debuglink import SessionDebugWrapper as Session
from trezorlib.debuglink import TrezorClientDebugLink as Client
from trezorlib.exceptions import TrezorFailure
from trezorlib.messages import SdProtectOperationType as Op
2019-10-21 10:12:03 +00:00
from ..common import MNEMONIC12
pytestmark = [pytest.mark.models("core", skip="safe3"), pytest.mark.sd_card]
2024-11-15 16:31:22 +00:00
def test_enable_disable(session: Session):
assert session.features.sd_protection is False
# Disabling SD protection should fail
with pytest.raises(TrezorFailure):
2024-11-15 16:31:22 +00:00
device.sd_protect(session, Op.DISABLE)
# Enable SD protection
2024-11-15 16:31:22 +00:00
device.sd_protect(session, Op.ENABLE)
assert session.features.sd_protection is True
# Enabling SD protection should fail
with pytest.raises(TrezorFailure):
2024-11-15 16:31:22 +00:00
device.sd_protect(session, Op.ENABLE)
assert session.features.sd_protection is True
2019-10-21 10:01:44 +00:00
# Disable SD protection
2024-11-15 16:31:22 +00:00
device.sd_protect(session, Op.DISABLE)
assert session.features.sd_protection is False
2024-11-15 16:31:22 +00:00
def test_refresh(session: Session):
assert session.features.sd_protection is False
# Enable SD protection
2024-11-15 16:31:22 +00:00
device.sd_protect(session, Op.ENABLE)
assert session.features.sd_protection is True
# Refresh SD protection
2024-11-15 16:31:22 +00:00
device.sd_protect(session, Op.REFRESH)
assert session.features.sd_protection is True
# Disable SD protection
2024-11-15 16:31:22 +00:00
device.sd_protect(session, Op.DISABLE)
assert session.features.sd_protection is False
# Refreshing SD protection should fail
with pytest.raises(TrezorFailure):
2024-11-15 16:31:22 +00:00
device.sd_protect(session, Op.REFRESH)
assert session.features.sd_protection is False
2019-10-21 10:12:03 +00:00
def test_wipe(client: Client):
2024-11-15 16:31:22 +00:00
session = client.get_management_session()
2019-10-21 10:12:03 +00:00
# Enable SD protection
2024-11-15 16:31:22 +00:00
device.sd_protect(session, Op.ENABLE)
assert session.features.sd_protection is True
2019-10-21 10:12:03 +00:00
# Wipe device (this wipes internal storage)
2024-11-15 16:31:22 +00:00
device.wipe(session)
client = client.get_new_client()
session = client.get_management_session()
assert session.features.sd_protection is False
2019-10-21 10:12:03 +00:00
# Restore device to working status
debuglink.load_device(
2024-11-15 16:31:22 +00:00
session,
mnemonic=MNEMONIC12,
pin=None,
passphrase_protection=False,
label="test",
2019-10-21 10:12:03 +00:00
)
2024-11-15 16:31:22 +00:00
assert session.features.sd_protection is False
2019-10-21 10:12:03 +00:00
# Enable SD protection
2024-11-15 16:31:22 +00:00
device.sd_protect(session, Op.ENABLE)
assert session.features.sd_protection is True
2019-10-21 10:12:03 +00:00
# Refresh SD protection
2024-11-15 16:31:22 +00:00
device.sd_protect(session, Op.REFRESH)