Skip to content

Commit

Permalink
Add test for blockchain.get_chainwork
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyRand committed Jul 5, 2019
1 parent c3399e0 commit 4291828
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions electrum/tests/test_blockchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from electrum import constants, blockchain
from electrum.simple_config import SimpleConfig
from electrum.blockchain import Blockchain, deserialize_header, hash_header
from electrum.blockchain import Blockchain, MissingHeader, deserialize_header, hash_header
from electrum.util import bh2u, bfh, make_dir

from . import SequentialTestCase
Expand Down Expand Up @@ -45,25 +45,17 @@ class TestBlockchain(SequentialTestCase):
# /
# A <- B <- C <- D <- E <- F <- O <- P <- Q <- R <- S <- T <- U

@classmethod
def setUpClass(cls):
super().setUpClass()
constants.set_regtest()

@classmethod
def tearDownClass(cls):
super().tearDownClass()
constants.set_mainnet()

def setUp(self):
super().setUp()
constants.set_regtest()
self.data_dir = tempfile.mkdtemp()
make_dir(os.path.join(self.data_dir, 'forks'))
self.config = SimpleConfig({'electrum_path': self.data_dir})
blockchain.blockchains = {}

def tearDown(self):
super().tearDown()
constants.set_mainnet()
shutil.rmtree(self.data_dir)

def _append_header(self, chain: Blockchain, header: dict):
Expand Down Expand Up @@ -339,3 +331,14 @@ def test_doing_multiple_swaps_after_single_new_header(self):

for b in (chain_u, chain_l, chain_z):
self.assertTrue(all([b.can_connect(b.read_header(i), False) for i in range(b.height())]))

def test_mainnet_get_chainwork(self):
constants.set_mainnet()
blockchain.blockchains[constants.net.GENESIS] = chain_u = Blockchain(
config=self.config, forkpoint=0, parent=None,
forkpoint_hash=constants.net.GENESIS, prev_hash=None)
open(chain_u.path(), 'w+').close()

chain_u.get_chainwork(constants.net.max_checkpoint())
with self.assertRaises(MissingHeader):
chain_u.get_chainwork(constants.net.max_checkpoint() + 4032)

0 comments on commit 4291828

Please sign in to comment.