From 373a805ee66561aef7a8d3859fff328bdece7fe7 Mon Sep 17 00:00:00 2001 From: Jude Nelson Date: Sun, 14 Jan 2018 15:53:00 -0500 Subject: [PATCH] test trying to register 26 names in the same block --- .../scenarios/name_pre_reg_sameblock_quota.py | 114 ++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 integration_tests/blockstack_integration_tests/scenarios/name_pre_reg_sameblock_quota.py diff --git a/integration_tests/blockstack_integration_tests/scenarios/name_pre_reg_sameblock_quota.py b/integration_tests/blockstack_integration_tests/scenarios/name_pre_reg_sameblock_quota.py new file mode 100644 index 000000000..892e36afe --- /dev/null +++ b/integration_tests/blockstack_integration_tests/scenarios/name_pre_reg_sameblock_quota.py @@ -0,0 +1,114 @@ +#!/usr/bin/env python2 +# -*- 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 . +""" + +import testlib +import virtualchain +import json + +wallets = [ + testlib.Wallet( "5JesPiN68qt44Hc2nT8qmyZ1JDwHebfoh9KQ52Lazb1m1LaKNj9", 100000000000 ), + testlib.Wallet( "5KHqsiU9qa77frZb6hQy9ocV7Sus9RWJcQGYYBJJBb2Efj1o77e", 100000000000 ), + testlib.Wallet( "5Kg5kJbQHvk1B64rJniEmgbD83FpZpbw2RjdAZEzTefs9ihN3Bz", 100000000000 ), + testlib.Wallet( "5JuVsoS9NauksSkqEjbUZxWwgGDQbMwPsEfoRBSpLpgDX1RtLX7", 100000000000 ), + testlib.Wallet( "5KEpiSRr1BrT8vRD7LKGCEmudokTh1iMHbiThMQpLdwBwhDJB1T", 100000000000 ) +] + +consensus = "17ac43c1d8549c3181b200f1bf97eb7d" + +def scenario( wallets, **kw ): + + 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 ) + + # try to exceed quota (currently 25) + for i in xrange(0, 26): + resp = testlib.blockstack_name_preorder( "foo%s.test" % i, wallets[2 + (i%2)].privkey, wallets[3].addr ) + if 'error' in resp: + print json.dumps( resp, indent=4 ) + + for i in xrange(0, 26): + resp = testlib.blockstack_name_register( "foo%s.test" % i, wallets[2 + (i%2)].privkey, wallets[3].addr ) + if 'error' in resp: + print json.dumps( resp, indent=4 ) + + testlib.next_block( **kw ) + + resp = testlib.blockstack_name_preorder( "bar.test", wallets[2].privkey, wallets[3].addr ) + if 'error' in resp: + print json.dumps( resp, indent=4 ) + + testlib.next_block( **kw ) + + # should fail + resp = testlib.blockstack_name_register( "bar.test", wallets[2].privkey, wallets[3].addr, safety_checks=False ) + if 'error' in resp: + print json.dumps( resp, indent=4 ) + + testlib.next_block( **kw ) + testlib.expect_snv_fail_at('bar.test', testlib.get_current_block(**kw)) + + +def check( state_engine ): + + # not revealed, but ready + ns = state_engine.get_namespace_reveal( "test" ) + if ns is not None: + return False + + ns = state_engine.get_namespace( "test" ) + if ns is None: + return False + + if ns['namespace_id'] != 'test': + return False + + # all foo's should succeed + for i in xrange(0, 25): + namerec = state_engine.get_name( "foo%s.test" % i ) + if namerec is None: + print "missing foo%s.test" % i + return False + + if namerec['address'] != wallets[3].addr or namerec['sender'] != virtualchain.make_payment_script(wallets[3].addr): + print "foo%s.test not owned by %s" % (i, wallets[3].addr) + return False + + # last foo should fail + namerec = state_engine.get_name( "foo26.test" ) + if namerec is not None: + print "foo26.test exists" + return False + + # bar should not be registered + namerec = state_engine.get_name( "bar.test" ) + if namerec is not None: + print "bar.test exists" + return False + + return True