mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #8103
e9156d7
functional_tests: update uri test with external pid (selsta)
This commit is contained in:
commit
319b831e65
@ -142,15 +142,11 @@ class URITest():
|
||||
assert res.uri.recipient_name == utf8string[0]
|
||||
assert not 'unknown_parameters' in res or len(res.unknown_parameters) == 0
|
||||
|
||||
res = wallet.make_uri(address = address, recipient_name = utf8string[0], tx_description = utf8string[1], amount = 1000000000000, payment_id = '1' * 64)
|
||||
assert res.uri == 'monero:' + address + '?tx_payment_id=' + '1' * 64 + '&tx_amount=1.000000000000&recipient_name=' + quoted_utf8string[0] + '&tx_description=' + quoted_utf8string[1]
|
||||
res = wallet.parse_uri(res.uri)
|
||||
assert res.uri.address == address
|
||||
assert res.uri.payment_id == '1' * 64
|
||||
assert res.uri.amount == 1000000000000
|
||||
assert res.uri.tx_description == utf8string[1]
|
||||
assert res.uri.recipient_name == utf8string[0]
|
||||
assert not 'unknown_parameters' in res or len(res.unknown_parameters) == 0
|
||||
# external payment ids are not supported anymore
|
||||
ok = False
|
||||
try: res = wallet.make_uri(address = address, recipient_name = utf8string[0], tx_description = utf8string[1], amount = 1000000000000, payment_id = '1' * 64)
|
||||
except: ok = True
|
||||
assert ok
|
||||
|
||||
# spaces must be encoded as %20
|
||||
res = wallet.make_uri(address = address, tx_description = ' ' + utf8string[1] + ' ' + utf8string[0] + ' ', amount = 1000000000000)
|
||||
|
Loading…
Reference in New Issue
Block a user