2019-09-01 18:12:49 +00:00
|
|
|
# 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
|
2019-09-01 18:12:49 +00:00
|
|
|
from trezorlib.exceptions import TrezorFailure
|
2019-10-16 08:58:56 +00:00
|
|
|
from trezorlib.messages import SdProtectOperationType as Op
|
2019-09-01 18:12:49 +00:00
|
|
|
|
2019-10-21 10:12:03 +00:00
|
|
|
from ..common import MNEMONIC12
|
|
|
|
|
2019-10-16 08:58:56 +00:00
|
|
|
pytestmark = [pytest.mark.skip_t1, pytest.mark.sd_card]
|
2019-09-01 18:12:49 +00:00
|
|
|
|
|
|
|
|
2019-10-21 10:01:44 +00:00
|
|
|
def test_enable_disable(client):
|
|
|
|
assert client.features.sd_protection is False
|
2019-10-16 08:58:56 +00:00
|
|
|
# Disabling SD protection should fail
|
|
|
|
with pytest.raises(TrezorFailure):
|
|
|
|
device.sd_protect(client, Op.DISABLE)
|
2019-09-01 18:12:49 +00:00
|
|
|
|
2019-10-16 08:58:56 +00:00
|
|
|
# Enable SD protection
|
|
|
|
device.sd_protect(client, Op.ENABLE)
|
2019-10-21 10:01:44 +00:00
|
|
|
assert client.features.sd_protection is True
|
2019-09-01 18:12:49 +00:00
|
|
|
|
2019-10-16 08:58:56 +00:00
|
|
|
# Enabling SD protection should fail
|
|
|
|
with pytest.raises(TrezorFailure):
|
|
|
|
device.sd_protect(client, Op.ENABLE)
|
2019-10-21 10:01:44 +00:00
|
|
|
assert client.features.sd_protection is True
|
|
|
|
|
|
|
|
# Disable SD protection
|
|
|
|
device.sd_protect(client, Op.DISABLE)
|
|
|
|
assert client.features.sd_protection is False
|
2019-09-01 18:12:49 +00:00
|
|
|
|
|
|
|
|
2019-10-21 10:01:44 +00:00
|
|
|
def test_refresh(client):
|
|
|
|
assert client.features.sd_protection is False
|
2019-10-16 08:58:56 +00:00
|
|
|
# Enable SD protection
|
|
|
|
device.sd_protect(client, Op.ENABLE)
|
2019-10-21 10:01:44 +00:00
|
|
|
assert client.features.sd_protection is True
|
2019-09-01 18:12:49 +00:00
|
|
|
|
2019-10-16 08:58:56 +00:00
|
|
|
# Refresh SD protection
|
|
|
|
device.sd_protect(client, Op.REFRESH)
|
2019-10-21 10:01:44 +00:00
|
|
|
assert client.features.sd_protection is True
|
2019-09-01 18:12:49 +00:00
|
|
|
|
2019-10-16 08:58:56 +00:00
|
|
|
# Disable SD protection
|
|
|
|
device.sd_protect(client, Op.DISABLE)
|
2019-10-21 10:01:44 +00:00
|
|
|
assert client.features.sd_protection is False
|
2019-09-01 18:12:49 +00:00
|
|
|
|
2019-10-16 08:58:56 +00:00
|
|
|
# Refreshing SD protection should fail
|
|
|
|
with pytest.raises(TrezorFailure):
|
|
|
|
device.sd_protect(client, Op.REFRESH)
|
2019-10-21 10:01:44 +00:00
|
|
|
assert client.features.sd_protection is False
|
2019-10-21 10:12:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_wipe(client):
|
|
|
|
# Enable SD protection
|
|
|
|
device.sd_protect(client, Op.ENABLE)
|
|
|
|
assert client.features.sd_protection is True
|
|
|
|
|
|
|
|
# Wipe device (this wipes internal storage)
|
|
|
|
device.wipe(client)
|
|
|
|
assert client.features.sd_protection is False
|
|
|
|
|
|
|
|
# Restore device to working status
|
2019-11-13 11:47:51 +00:00
|
|
|
debuglink.load_device(
|
2019-10-21 10:12:03 +00:00
|
|
|
client, mnemonic=MNEMONIC12, pin=None, passphrase_protection=False, label="test"
|
|
|
|
)
|
|
|
|
assert client.features.sd_protection is False
|
|
|
|
|
|
|
|
# Enable SD protection
|
|
|
|
device.sd_protect(client, Op.ENABLE)
|
|
|
|
assert client.features.sd_protection is True
|
|
|
|
|
|
|
|
# Refresh SD protection
|
|
|
|
device.sd_protect(client, Op.REFRESH)
|