2018-06-21 14:28:34 +00:00
|
|
|
# This file is part of the Trezor project.
|
2017-01-03 18:40:05 +00:00
|
|
|
#
|
2018-06-21 14:28:34 +00:00
|
|
|
# Copyright (C) 2012-2018 SatoshiLabs and contributors
|
2017-01-03 18:40:05 +00:00
|
|
|
#
|
|
|
|
# This library is free software: you can redistribute it and/or modify
|
2018-06-21 14:28:34 +00:00
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# as published by the Free Software Foundation.
|
2017-01-03 18:40:05 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2018-06-21 14:28:34 +00:00
|
|
|
# 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>.
|
2017-01-03 18:40:05 +00:00
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
from trezorlib import device, messages as proto
|
2014-02-21 01:33:23 +00:00
|
|
|
|
2018-08-13 16:21:24 +00:00
|
|
|
from .common import TrezorTest
|
2014-02-21 01:33:23 +00:00
|
|
|
|
2017-06-23 19:31:42 +00:00
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
class TestMsgWipedevice(TrezorTest):
|
2014-02-21 01:33:23 +00:00
|
|
|
def test_wipe_device(self):
|
|
|
|
self.setup_mnemonic_pin_passphrase()
|
|
|
|
features = self.client.call_raw(proto.Initialize())
|
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
assert features.initialized is True
|
|
|
|
assert features.pin_protection is True
|
|
|
|
assert features.passphrase_protection is True
|
2014-02-21 01:33:23 +00:00
|
|
|
device_id = features.device_id
|
|
|
|
|
2018-08-10 12:04:58 +00:00
|
|
|
device.wipe(self.client)
|
2014-02-21 01:33:23 +00:00
|
|
|
features = self.client.call_raw(proto.Initialize())
|
|
|
|
|
2017-12-23 20:20:49 +00:00
|
|
|
assert features.initialized is False
|
|
|
|
assert features.pin_protection is False
|
|
|
|
assert features.passphrase_protection is False
|
|
|
|
assert features.device_id != device_id
|