|
|
|
@ -30,7 +30,7 @@ from test_framework.test_framework import BitcoinTestFramework
|
|
|
|
|
from test_framework.util import assert_equal
|
|
|
|
|
|
|
|
|
|
DEFAULT_ASMAP_FILENAME = 'ip_asn.map' # defined in src/init.cpp
|
|
|
|
|
ASMAP = '../../src/test/data/asmap.raw' # path to unit test skeleton asmap
|
|
|
|
|
ASMAP = 'src/test/data/asmap.raw' # path to unit test skeleton asmap
|
|
|
|
|
VERSION = 'fec61fa21a9f46f3b17bdcd660d7f4cd90b966aad3aec593c99b35f0aca15853'
|
|
|
|
|
|
|
|
|
|
def expected_messages(filename):
|
|
|
|
@ -133,7 +133,8 @@ class AsmapTest(BitcoinTestFramework):
|
|
|
|
|
self.node = self.nodes[0]
|
|
|
|
|
self.datadir = self.node.chain_path
|
|
|
|
|
self.default_asmap = os.path.join(self.datadir, DEFAULT_ASMAP_FILENAME)
|
|
|
|
|
self.asmap_raw = os.path.join(os.path.dirname(os.path.realpath(__file__)), ASMAP)
|
|
|
|
|
base_dir = self.config["environment"]["SRCDIR"]
|
|
|
|
|
self.asmap_raw = os.path.join(base_dir, ASMAP)
|
|
|
|
|
|
|
|
|
|
self.test_without_asmap_arg()
|
|
|
|
|
self.test_asmap_with_absolute_path()
|
|
|
|
|