mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-07 07:12:34 +00:00

core: refactor writing native_call with length core: removed hex encoded string branch from native_call calculation common: nested OntologyTransaction into OntologySignTx core: fix ontology layout formatting python: change the way ontology message signing works python: add expected fields to ontology core+python+common: remove type field from OntologyTransaction core: inline write_push_bytes
72 lines
2.2 KiB
Python
72 lines
2.2 KiB
Python
# This file is part of the Trezor project.
|
|
#
|
|
# Copyright (C) 2012-2018 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 time
|
|
|
|
import pytest
|
|
|
|
from trezorlib import messages, ontology
|
|
from trezorlib.tools import parse_path
|
|
|
|
from ..common import MNEMONIC12
|
|
|
|
|
|
@pytest.mark.altcoin
|
|
@pytest.mark.ontology
|
|
@pytest.mark.skip_t1
|
|
@pytest.mark.setup_client(mnemonic=MNEMONIC12)
|
|
def test_ontology_sign_ont_id_add_attributes(client):
|
|
with client:
|
|
client.set_input_flow(input_flow(client, num_pages=2))
|
|
|
|
transaction = messages.OntologyTransaction(
|
|
version=0x00,
|
|
nonce=0x7F7F1CEB,
|
|
gas_price=500,
|
|
gas_limit=30000,
|
|
payer="AGn8JFPGM5S4jkWhTC89Xtz1Y76sPz29Rc",
|
|
tx_attributes=[],
|
|
)
|
|
|
|
ont_id_add_attributes = messages.OntologyOntIdAddAttributes(
|
|
ont_id="did:ont:AGVn4NZNEQ7RawHTDxjaTjZ3R8h8q1aq9h",
|
|
public_key=bytes.fromhex(
|
|
"03a8269b0dad311d98195e76729bc57003348a315fd17b6bf4f90ba8b86735fa33"
|
|
),
|
|
ont_id_attributes=[
|
|
messages.OntologyOntIdAttribute(
|
|
key="firstName", type="json", value="John Sheppard"
|
|
)
|
|
],
|
|
)
|
|
|
|
signature = ontology.sign(
|
|
client, parse_path("m/44'/1024'/0'/0/0"), transaction, ont_id_add_attributes
|
|
)
|
|
assert (
|
|
signature.hex()
|
|
== "01c256dc16d88685fd6652d69b808059f7ed30edadb0ccfe51802702b94b65500922f9ea80e0fd7b77b5c51515e3bc43a495b3e98fb3adb82a0ab5dd47169fcf4e"
|
|
)
|
|
|
|
|
|
def input_flow(client, num_pages):
|
|
yield
|
|
time.sleep(1)
|
|
for _ in range(num_pages - 1):
|
|
client.debug.swipe_down()
|
|
time.sleep(1)
|
|
client.debug.press_yes()
|