Skip to content
Snippets Groups Projects
Commit 055760ba authored by Moul's avatar Moul
Browse files

Update end_to_end tests

balance: fix string to use balance and not amount
parent b5738b5e
No related branches found
No related tags found
1 merge request!224Separate tests into unit and integration directories (#441)
Pipeline #17573 passed
......@@ -103,7 +103,7 @@ def show_amount_from_pubkey(label: str, inputs_balance: List[int]) -> None:
currency_symbol,
)
m_tools.display_amount(
display, "Total amount", totalAmountInput, ud_value, currency_symbol
display, "Total balance", totalAmountInput, ud_value, currency_symbol
)
display.append(
[
......
......@@ -19,13 +19,13 @@ silkaj = ["poetry", "run", "silkaj"]
def test_info():
"""tests 'silkaj info' returns a number of members"""
"""tests 'silkaj blockchain info' returns a number of members"""
output = check_output(silkaj + ["blockchain", "info"])
assert "Number of members" in output.decode()
def test_wot():
def test_wot_status():
"""tests 'silkaj wot status' returns a number of members"""
output = check_output(silkaj + ["wot", "status", "Matograine"]).decode()
......@@ -36,15 +36,15 @@ def test_wot():
assert "sent_expire" in output
def test_id():
"""tests 'silkaj lookup' certification on gtest"""
def test_wot_lookup():
"""tests 'silkaj wot lookup' certification on gtest"""
output = check_output(silkaj + ["--gtest", "wot", "lookup", "elois"]).decode()
assert "D7CYHJXjaH4j7zRdWngUbsURPnSnjsCYtvo6f8dvW3C" in output
def test_balance():
"""tests 'silkaj amount' command on gtest"""
def test_money_balance():
"""tests 'silkaj money balance' command on gtest"""
output = check_output(
silkaj
......@@ -56,10 +56,10 @@ def test_balance():
]
).decode()
assert (
"│ Balance of pubkey │ 3dnbnYY9i2bHMQUGyFp5GVvJ2wBkVpus31cDJA5cfRpj:"
"│ Balance of pubkey │ 3dnbnYY9i2bHMQUGyFp5GVvJ2wBkVpus31cDJA5cfRpj │"
in output
)
assert "EyF" in output
assert "│ Total amount (unit|relative) │" in output
assert ":EyF" in output
assert "│ Total balance (unit|relative) │" in output
assert "UD ĞTest" in output
assert "Total relative to M/N" in output
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment