2024-08-26 12:50:19 +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
|
|
|
|
|
|
|
|
from trezorlib import misc
|
|
|
|
from trezorlib.debuglink import TrezorClientDebugLink as Client
|
|
|
|
|
2024-12-09 15:52:01 +00:00
|
|
|
from ... import translations as TR
|
2024-08-26 12:50:19 +00:00
|
|
|
from ...common import MNEMONIC12
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.setup_client(mnemonic=MNEMONIC12)
|
|
|
|
@pytest.mark.models("core")
|
|
|
|
def test_encrypt(client: Client):
|
2024-12-09 15:52:01 +00:00
|
|
|
def input_flow():
|
|
|
|
assert (yield).name == "cipher_key_value"
|
|
|
|
assert client.debug.read_layout().text_content() == TR.misc__enable_labeling
|
|
|
|
client.debug.swipe_up()
|
|
|
|
client.debug.press_yes()
|
|
|
|
|
|
|
|
with client:
|
|
|
|
client.set_input_flow(input_flow())
|
|
|
|
misc.encrypt_keyvalue(
|
|
|
|
client,
|
|
|
|
[],
|
|
|
|
"Enable labeling?",
|
|
|
|
b"",
|
|
|
|
)
|