2016-03-19 20:58:06 +01:00
#!/usr/bin/env python3
2018-01-02 18:12:05 +01:00
# Copyright (c) 2014-2017 The Bitcoin Core developers
2014-10-23 03:48:19 +02:00
# Distributed under the MIT software license, see the accompanying
2014-03-25 14:33:44 +01:00
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
2017-01-18 00:34:40 +01:00
""" Test the listreceivedbyaddress RPC. """
2017-08-15 17:39:02 +02:00
from decimal import Decimal
2014-03-25 14:33:44 +01:00
2015-05-02 12:53:35 +02:00
from test_framework . test_framework import BitcoinTestFramework
2017-08-15 17:33:39 +02:00
from test_framework . util import ( assert_array_result ,
assert_equal ,
assert_raises_rpc_error ,
)
2014-03-25 14:33:44 +01:00
2014-07-08 18:07:23 +02:00
class ReceivedByTest ( BitcoinTestFramework ) :
2017-06-10 00:21:21 +02:00
def set_test_params ( self ) :
2017-08-24 17:11:56 +02:00
self . num_nodes = 2
2015-12-05 18:02:02 +01:00
2014-10-20 14:14:04 +02:00
def run_test ( self ) :
2017-08-15 17:39:02 +02:00
# Generate block to get out of IBD
self . nodes [ 0 ] . generate ( 1 )
self . log . info ( " listreceivedbyaddress Test " )
2014-07-08 18:07:23 +02:00
# Send from node 0 to 1
2014-10-20 14:14:04 +02:00
addr = self . nodes [ 1 ] . getnewaddress ( )
txid = self . nodes [ 0 ] . sendtoaddress ( addr , 0.1 )
self . sync_all ( )
2014-07-08 18:07:23 +02:00
2017-08-15 17:39:02 +02:00
# Check not listed in listreceivedbyaddress because has 0 confirmations
2016-04-19 13:22:11 +02:00
assert_array_result ( self . nodes [ 1 ] . listreceivedbyaddress ( ) ,
2017-08-15 17:39:02 +02:00
{ " address " : addr } ,
{ } ,
True )
# Bury Tx under 10 block so it will be returned by listreceivedbyaddress
2015-04-01 05:28:28 +02:00
self . nodes [ 1 ] . generate ( 10 )
2014-10-20 14:14:04 +02:00
self . sync_all ( )
2016-04-19 13:22:11 +02:00
assert_array_result ( self . nodes [ 1 ] . listreceivedbyaddress ( ) ,
2017-08-15 17:39:02 +02:00
{ " address " : addr } ,
2017-10-20 19:27:55 +02:00
{ " address " : addr , " label " : " " , " amount " : Decimal ( " 0.1 " ) , " confirmations " : 10 , " txids " : [ txid , ] } )
2017-08-15 17:39:02 +02:00
# With min confidence < 10
2016-04-19 13:22:11 +02:00
assert_array_result ( self . nodes [ 1 ] . listreceivedbyaddress ( 5 ) ,
2017-08-15 17:39:02 +02:00
{ " address " : addr } ,
2017-10-20 19:27:55 +02:00
{ " address " : addr , " label " : " " , " amount " : Decimal ( " 0.1 " ) , " confirmations " : 10 , " txids " : [ txid , ] } )
2017-08-15 17:39:02 +02:00
# With min confidence > 10, should not find Tx
assert_array_result ( self . nodes [ 1 ] . listreceivedbyaddress ( 11 ) , { " address " : addr } , { } , True )
2014-07-08 18:07:23 +02:00
2017-08-15 17:39:02 +02:00
# Empty Tx
2017-01-09 23:18:17 +01:00
empty_addr = self . nodes [ 1 ] . getnewaddress ( )
2017-08-15 17:39:02 +02:00
assert_array_result ( self . nodes [ 1 ] . listreceivedbyaddress ( 0 , True ) ,
2017-01-09 23:18:17 +01:00
{ " address " : empty_addr } ,
2017-10-20 19:27:55 +02:00
{ " address " : empty_addr , " label " : " " , " amount " : 0 , " confirmations " : 0 , " txids " : [ ] } )
2017-01-09 23:18:17 +01:00
#Test Address filtering
#Only on addr
2017-10-20 19:27:55 +02:00
expected = { " address " : addr , " label " : " " , " amount " : Decimal ( " 0.1 " ) , " confirmations " : 10 , " txids " : [ txid , ] }
2017-01-09 23:18:17 +01:00
res = self . nodes [ 1 ] . listreceivedbyaddress ( minconf = 0 , include_empty = True , include_watchonly = True , address_filter = addr )
assert_array_result ( res , { " address " : addr } , expected )
assert_equal ( len ( res ) , 1 )
#Error on invalid address
assert_raises_rpc_error ( - 4 , " address_filter parameter was invalid " , self . nodes [ 1 ] . listreceivedbyaddress , minconf = 0 , include_empty = True , include_watchonly = True , address_filter = " bamboozling " )
#Another address receive money
res = self . nodes [ 1 ] . listreceivedbyaddress ( 0 , True , True )
assert_equal ( len ( res ) , 2 ) #Right now 2 entries
other_addr = self . nodes [ 1 ] . getnewaddress ( )
txid2 = self . nodes [ 0 ] . sendtoaddress ( other_addr , 0.1 )
self . nodes [ 0 ] . generate ( 1 )
self . sync_all ( )
#Same test as above should still pass
2017-10-20 19:27:55 +02:00
expected = { " address " : addr , " label " : " " , " amount " : Decimal ( " 0.1 " ) , " confirmations " : 11 , " txids " : [ txid , ] }
2017-01-09 23:18:17 +01:00
res = self . nodes [ 1 ] . listreceivedbyaddress ( 0 , True , True , addr )
assert_array_result ( res , { " address " : addr } , expected )
assert_equal ( len ( res ) , 1 )
#Same test as above but with other_addr should still pass
2017-10-20 19:27:55 +02:00
expected = { " address " : other_addr , " label " : " " , " amount " : Decimal ( " 0.1 " ) , " confirmations " : 1 , " txids " : [ txid2 , ] }
2017-01-09 23:18:17 +01:00
res = self . nodes [ 1 ] . listreceivedbyaddress ( 0 , True , True , other_addr )
assert_array_result ( res , { " address " : other_addr } , expected )
assert_equal ( len ( res ) , 1 )
#Should be two entries though without filter
res = self . nodes [ 1 ] . listreceivedbyaddress ( 0 , True , True )
assert_equal ( len ( res ) , 3 ) #Became 3 entries
#Not on random addr
other_addr = self . nodes [ 0 ] . getnewaddress ( ) # note on node[0]! just a random addr
res = self . nodes [ 1 ] . listreceivedbyaddress ( 0 , True , True , other_addr )
assert_equal ( len ( res ) , 0 )
2017-08-15 17:39:02 +02:00
self . log . info ( " getreceivedbyaddress Test " )
2014-07-08 18:07:23 +02:00
# Send from node 0 to 1
2014-10-20 14:14:04 +02:00
addr = self . nodes [ 1 ] . getnewaddress ( )
txid = self . nodes [ 0 ] . sendtoaddress ( addr , 0.1 )
self . sync_all ( )
2014-07-08 18:07:23 +02:00
2017-08-15 17:39:02 +02:00
# Check balance is 0 because of 0 confirmations
2014-10-20 14:14:04 +02:00
balance = self . nodes [ 1 ] . getreceivedbyaddress ( addr )
2017-08-15 17:39:02 +02:00
assert_equal ( balance , Decimal ( " 0.0 " ) )
2014-07-08 18:07:23 +02:00
2017-08-15 17:39:02 +02:00
# Check balance is 0.1
balance = self . nodes [ 1 ] . getreceivedbyaddress ( addr , 0 )
assert_equal ( balance , Decimal ( " 0.1 " ) )
2014-07-08 18:07:23 +02:00
2017-08-15 17:39:02 +02:00
# Bury Tx under 10 block so it will be returned by the default getreceivedbyaddress
2015-04-01 05:28:28 +02:00
self . nodes [ 1 ] . generate ( 10 )
2014-10-20 14:14:04 +02:00
self . sync_all ( )
balance = self . nodes [ 1 ] . getreceivedbyaddress ( addr )
2017-08-15 17:39:02 +02:00
assert_equal ( balance , Decimal ( " 0.1 " ) )
2017-08-15 17:33:39 +02:00
# Trying to getreceivedby for an address the wallet doesn't own should return an error
assert_raises_rpc_error ( - 4 , " Address not found in wallet " , self . nodes [ 0 ] . getreceivedbyaddress , addr )
2017-10-20 19:27:55 +02:00
self . log . info ( " listreceivedbylabel + getreceivedbylabel Test " )
2014-07-08 18:07:23 +02:00
2017-08-15 17:39:02 +02:00
# set pre-state
2014-10-20 14:14:04 +02:00
addrArr = self . nodes [ 1 ] . getnewaddress ( )
2017-10-20 19:27:55 +02:00
label = self . nodes [ 1 ] . getaccount ( addrArr )
received_by_label_json = [ r for r in self . nodes [ 1 ] . listreceivedbylabel ( ) if r [ " label " ] == label ] [ 0 ]
balance_by_label = self . nodes [ 1 ] . getreceivedbylabel ( label )
2014-07-08 18:07:23 +02:00
2014-10-20 14:14:04 +02:00
txid = self . nodes [ 0 ] . sendtoaddress ( addr , 0.1 )
2014-11-20 21:49:07 +01:00
self . sync_all ( )
2014-07-08 18:07:23 +02:00
2017-10-20 19:27:55 +02:00
# listreceivedbylabel should return received_by_label_json because of 0 confirmations
assert_array_result ( self . nodes [ 1 ] . listreceivedbylabel ( ) ,
{ " label " : label } ,
received_by_label_json )
2014-07-08 18:07:23 +02:00
# getreceivedbyaddress should return same balance because of 0 confirmations
2017-10-20 19:27:55 +02:00
balance = self . nodes [ 1 ] . getreceivedbylabel ( label )
assert_equal ( balance , balance_by_label )
2014-07-08 18:07:23 +02:00
2015-04-01 05:28:28 +02:00
self . nodes [ 1 ] . generate ( 10 )
2014-10-20 14:14:04 +02:00
self . sync_all ( )
2017-10-20 19:27:55 +02:00
# listreceivedbylabel should return updated received list
assert_array_result ( self . nodes [ 1 ] . listreceivedbylabel ( ) ,
{ " label " : label } ,
{ " label " : received_by_label_json [ " label " ] , " amount " : ( received_by_label_json [ " amount " ] + Decimal ( " 0.1 " ) ) } )
2014-07-08 18:07:23 +02:00
2017-10-20 19:27:55 +02:00
# getreceivedbylabel should return updated receive total
balance = self . nodes [ 1 ] . getreceivedbylabel ( label )
assert_equal ( balance , balance_by_label + Decimal ( " 0.1 " ) )
2014-07-08 18:07:23 +02:00
2017-10-20 19:27:55 +02:00
# Create a new label named "mynewlabel" that has a 0 balance
2016-03-21 16:55:02 +01:00
self . nodes [ 1 ] . getlabeladdress ( label = " mynewlabel " , force = True )
2017-10-20 19:27:55 +02:00
received_by_label_json = [ r for r in self . nodes [ 1 ] . listreceivedbylabel ( 0 , True ) if r [ " label " ] == " mynewlabel " ] [ 0 ]
2014-07-08 18:07:23 +02:00
2017-10-20 19:27:55 +02:00
# Test includeempty of listreceivedbylabel
assert_equal ( received_by_label_json [ " amount " ] , Decimal ( " 0.0 " ) )
2014-07-08 18:07:23 +02:00
2017-10-20 19:27:55 +02:00
# Test getreceivedbylabel for 0 amount labels
balance = self . nodes [ 1 ] . getreceivedbylabel ( " mynewlabel " )
2017-08-15 17:39:02 +02:00
assert_equal ( balance , Decimal ( " 0.0 " ) )
2014-03-25 14:33:44 +01:00
if __name__ == ' __main__ ' :
2014-07-08 18:07:23 +02:00
ReceivedByTest ( ) . main ( )