mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-24 03:45:38 +08:00
verify that we can withdraw funds using multisig addresses
This commit is contained in:
@@ -0,0 +1,215 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
Blockstack
|
||||
~~~~~
|
||||
copyright: (c) 2014-2015 by Halfmoon Labs, Inc.
|
||||
copyright: (c) 2016 by Blockstack.org
|
||||
|
||||
This file is part of Blockstack
|
||||
|
||||
Blockstack is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Blockstack 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 General Public License for more details.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with Blockstack. If not, see <http://www.gnu.org/licenses/>.
|
||||
"""
|
||||
import os
|
||||
import testlib
|
||||
import pybitcoin
|
||||
import urllib2
|
||||
import json
|
||||
import blockstack_client
|
||||
import blockstack_profiles
|
||||
import sys
|
||||
import keylib
|
||||
import time
|
||||
import virtualchain
|
||||
from keylib import ECPrivateKey, ECPublicKey
|
||||
|
||||
# activate multisig
|
||||
"""
|
||||
TEST ENV BLOCKSTACK_EPOCH_1_END_BLOCK 250
|
||||
TEST ENV BLOCKSTACK_EPOCH_2_NAMESPACE_LIFETIME_MULTIPLIER 1
|
||||
"""
|
||||
|
||||
|
||||
wallets = [
|
||||
testlib.Wallet( "5JesPiN68qt44Hc2nT8qmyZ1JDwHebfoh9KQ52Lazb1m1LaKNj9", 100000000000 ),
|
||||
testlib.Wallet( "5KHqsiU9qa77frZb6hQy9ocV7Sus9RWJcQGYYBJJBb2Efj1o77e", 100000000000 ),
|
||||
testlib.MultisigWallet(2, "5JfHdMq9XnZ9mwW5H6LsfVCn9u6iGAj2FCVYtfhcHn72Tphvm5P", "5JaqLZaKD7cgkfsxSZBNiu6gaFxo1XAiTXw1mhtatipNNCtZBZG", "5KNsAkiHRDZb5Yyedxov2Fncr6CcNPV52yqJbzQ8M2W6dkg2qJp"),
|
||||
testlib.MultisigWallet(2, "5JPrkpfLT3rDf1Lgm1DpA2Cfepwf9wCtEbDx1HSEdd4J2R5YMxZ", "5JiALcfvzFsKcvLnHf7ECgLdp6FxbcAXB1GPvEYP7HeigbDCQ9E", "5KScD5XL5Hj83Yjvm3u4HD78vSYwFRyq9StTLPnrWrCTGiqTvVP"),
|
||||
testlib.MultisigWallet(2, '5JPR5iVN8KGMdU9JfzoTCsipXazUcZPRY8zp7f3g8FRff2HBaAV', '5KTTwEyATY8v12MjNdoeA1u2ZGqgjnBNcyZjk3YSkiVJWYxqBSm', '5KQ1s8UEYz3oyFRUejBvb1imMdtpoP98w6NQYGxQsSo3u6DmztZ'),
|
||||
testlib.MultisigWallet(2, '5JpAkdEJuzF8E74UptksRLiB6Bf9QnwxGQutJTRWo5EAGVZfXmY', '5Hyc4wreVpZyzcfb56Zt1ymovda2xGucGZsAwoQz34iYK6aEKhR', '5JypKiQGiaD8AN6X86xtnuQYj7nnpLvp4VfcTVdDh4yFkLewAGx')
|
||||
]
|
||||
|
||||
consensus = "17ac43c1d8549c3181b200f1bf97eb7d"
|
||||
wallet_keys = None
|
||||
wallet_keys_2 = None
|
||||
error = False
|
||||
|
||||
index_file_data = "<html><head></head><body>foo.test hello world</body></html>"
|
||||
resource_data = "hello world"
|
||||
wallet_balance = None
|
||||
|
||||
def scenario( wallets, **kw ):
|
||||
|
||||
global wallet_keys, wallet_keys_2, error, index_file_data, resource_data, wallet_balance
|
||||
|
||||
wallet_keys = testlib.blockstack_client_initialize_wallet( "0123456789abcdef", wallets[5].privkey, wallets[3].privkey, wallets[0].privkey )
|
||||
test_proxy = testlib.TestAPIProxy()
|
||||
blockstack_client.set_default_proxy( test_proxy )
|
||||
|
||||
testlib.blockstack_namespace_preorder( "test", wallets[1].addr, wallets[0].privkey )
|
||||
testlib.next_block( **kw )
|
||||
|
||||
testlib.blockstack_namespace_reveal( "test", wallets[1].addr, 52595, 250, 4, [6,5,4,3,2,1,0,0,0,0,0,0,0,0,0,0], 10, 10, wallets[0].privkey )
|
||||
testlib.next_block( **kw )
|
||||
|
||||
testlib.blockstack_namespace_ready( "test", wallets[1].privkey )
|
||||
testlib.next_block( **kw )
|
||||
|
||||
testlib.blockstack_name_preorder( "foo.test", wallets[2].privkey, wallets[3].addr, wallet=wallets[3])
|
||||
testlib.next_block( **kw )
|
||||
|
||||
testlib.blockstack_name_register( "foo.test", wallets[2].privkey, wallets[3].addr, wallet=wallets[3] )
|
||||
testlib.next_block( **kw )
|
||||
|
||||
testlib.blockstack_client_set_wallet( "0123456789abcdef", wallets[5].privkey, wallets[3].privkey, wallets[0].privkey )
|
||||
|
||||
# migrate profiles
|
||||
res = testlib.migrate_profile( "foo.test", proxy=test_proxy, wallet_keys=wallet_keys )
|
||||
if 'error' in res:
|
||||
res['test'] = 'Failed to initialize foo.test profile'
|
||||
print json.dumps(res, indent=4, sort_keys=True)
|
||||
error = True
|
||||
return
|
||||
|
||||
# tell serialization-checker that value_hash can be ignored here
|
||||
print "BLOCKSTACK_SERIALIZATION_CHECK_IGNORE value_hash"
|
||||
sys.stdout.flush()
|
||||
|
||||
testlib.next_block( **kw )
|
||||
|
||||
config_path = os.environ.get("BLOCKSTACK_CLIENT_CONFIG", None)
|
||||
config_dir = os.path.dirname(config_path)
|
||||
|
||||
conf = blockstack_client.get_config(config_path)
|
||||
assert conf
|
||||
|
||||
api_pass = conf['api_password']
|
||||
|
||||
# make sure we can do REST calls
|
||||
res = testlib.blockstack_REST_call('GET', '/v1/blockchains/bitcoin/pending', None, api_pass=api_pass )
|
||||
if 'error' in res:
|
||||
res['test'] = 'Failed to get queues'
|
||||
print json.dumps(res)
|
||||
return False
|
||||
|
||||
# make sure we can do REST calls with different app names and user names
|
||||
res = testlib.blockstack_REST_call('GET', '/v1/blockchains/bitcoin/pending', None, api_pass=api_pass )
|
||||
if 'error' in res:
|
||||
res['test'] = 'Failed to get queues'
|
||||
print json.dumps(res)
|
||||
return False
|
||||
|
||||
# what's the balance?
|
||||
res = testlib.blockstack_REST_call('GET', '/v1/wallet/balance', None, api_pass=api_pass )
|
||||
if res['http_status'] != 200:
|
||||
res['test'] = 'failed to query wallet'
|
||||
print json.dumps(res)
|
||||
return False
|
||||
|
||||
wallet_balance = res['response']['balance']['satoshis']
|
||||
balance_before = testlib.get_balance(wallets[3].addr)
|
||||
|
||||
# can we move the funds?
|
||||
res = testlib.blockstack_REST_call('POST', '/v1/wallet/balance', None, api_pass=api_pass, data={'address': wallets[5].addr} )
|
||||
if res['http_status'] != 200:
|
||||
res['test'] = 'failed to transfer funds'
|
||||
print json.dumps(res)
|
||||
return False
|
||||
|
||||
if not res['response'].has_key('transaction_hash'):
|
||||
res['test'] = 'missing tx hash'
|
||||
print json.dumps(res)
|
||||
return False
|
||||
|
||||
# confirm it
|
||||
for i in xrange(0, 10):
|
||||
testlib.next_block(**kw)
|
||||
|
||||
new_balance = testlib.get_balance(wallets[5].addr)
|
||||
balance_after = testlib.get_balance(wallets[3].addr)
|
||||
|
||||
if new_balance != 0:
|
||||
print 'new balance of {} is {}'.format(wallets[5].addr, new_balance)
|
||||
return False
|
||||
|
||||
if abs(balance_before + wallet_balance - balance_after) > 5500:
|
||||
print "{} + {} != {}".format(balance_before, wallet_balance, balance_after)
|
||||
return False
|
||||
|
||||
|
||||
def check( state_engine ):
|
||||
|
||||
global wallet_keys, error, index_file_data, resource_data
|
||||
|
||||
config_path = os.environ.get("BLOCKSTACK_CLIENT_CONFIG")
|
||||
assert config_path
|
||||
|
||||
if error:
|
||||
print "Key operation failed."
|
||||
return False
|
||||
|
||||
# not revealed, but ready
|
||||
ns = state_engine.get_namespace_reveal( "test" )
|
||||
if ns is not None:
|
||||
print "namespace not ready"
|
||||
return False
|
||||
|
||||
ns = state_engine.get_namespace( "test" )
|
||||
if ns is None:
|
||||
print "no namespace"
|
||||
return False
|
||||
|
||||
if ns['namespace_id'] != 'test':
|
||||
print "wrong namespace"
|
||||
return False
|
||||
|
||||
names = ['foo.test']
|
||||
wallet_keys_list = [wallet_keys]
|
||||
test_proxy = testlib.TestAPIProxy()
|
||||
|
||||
for i in xrange(0, len(names)):
|
||||
name = names[i]
|
||||
wallet_payer = 5
|
||||
wallet_owner = 3
|
||||
wallet_data_pubkey = 0
|
||||
|
||||
# not preordered
|
||||
preorder = state_engine.get_name_preorder( name, virtualchain.make_payment_script(wallets[wallet_payer].addr), wallets[wallet_owner].addr )
|
||||
if preorder is not None:
|
||||
print "still have preorder"
|
||||
return False
|
||||
|
||||
# registered
|
||||
name_rec = state_engine.get_name( name )
|
||||
if name_rec is None:
|
||||
print "name does not exist"
|
||||
return False
|
||||
|
||||
# owned
|
||||
if name_rec['address'] != wallets[wallet_owner].addr or name_rec['sender'] != virtualchain.make_payment_script(wallets[wallet_owner].addr):
|
||||
print "name {} has wrong owner".format(name)
|
||||
return False
|
||||
|
||||
# balance transferred?
|
||||
|
||||
return True
|
||||
Reference in New Issue
Block a user