mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-13 19:18:56 +00:00
52 lines
1.6 KiB
Python
52 lines
1.6 KiB
Python
# 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
|
|
|
|
from trezorlib import device
|
|
from trezorlib.exceptions import TrezorFailure
|
|
from trezorlib.messages import SdProtectOperationType as Op
|
|
|
|
pytestmark = [pytest.mark.skip_t1, pytest.mark.sd_card]
|
|
|
|
|
|
def test_sd_protect_enable(client):
|
|
# Disabling SD protection should fail
|
|
with pytest.raises(TrezorFailure):
|
|
device.sd_protect(client, Op.DISABLE)
|
|
|
|
# Enable SD protection
|
|
device.sd_protect(client, Op.ENABLE)
|
|
|
|
# Enabling SD protection should fail
|
|
with pytest.raises(TrezorFailure):
|
|
device.sd_protect(client, Op.ENABLE)
|
|
|
|
|
|
def test_sd_protect_refresh(client):
|
|
# Enable SD protection
|
|
device.sd_protect(client, Op.ENABLE)
|
|
|
|
# Refresh SD protection
|
|
device.sd_protect(client, Op.REFRESH)
|
|
|
|
# Disable SD protection
|
|
device.sd_protect(client, Op.DISABLE)
|
|
|
|
# Refreshing SD protection should fail
|
|
with pytest.raises(TrezorFailure):
|
|
device.sd_protect(client, Op.REFRESH)
|