1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
import os
import sys
import unittest
import subprocess
class TestLightning(unittest.TestCase):
@staticmethod
def run_shell(args, timeout=30):
process = subprocess.Popen(['tests/regtest/regtest.sh'] + args, stderr=subprocess.STDOUT, stdout=subprocess.PIPE, universal_newlines=True)
for line in iter(process.stdout.readline, ''):
sys.stdout.write(line)
sys.stdout.flush()
process.wait(timeout=timeout)
process.stdout.close()
assert process.returncode == 0
def setUp(self):
test_name = self.id().split('.')[-1]
sys.stdout.write("***** %s ******\n" % test_name)
# initialize and get funds
for agent, config_options in self.agents.items():
self.run_shell(['init', agent])
for k, v in config_options.items():
self.run_shell(['setconfig', agent, k, v])
# mine a block so that funds are confirmed
self.run_shell(['new_block'])
# start daemons
for agent in self.agents:
self.run_shell(['start', agent])
def tearDown(self):
for agent in self.agents:
self.run_shell(['stop', agent])
class TestUnixSockets(TestLightning):
agents = {}
def test_unixsockets(self):
self.run_shell(['unixsockets'])
class TestLightningAB(TestLightning):
agents = {
'alice': {
},
'bob': {
'lightning_listen': 'localhost:9735',
}
}
def test_collaborative_close(self):
self.run_shell(['collaborative_close'])
def test_backup(self):
self.run_shell(['backup'])
def test_backup_local_forceclose(self):
self.run_shell(['backup_local_forceclose'])
def test_breach(self):
self.run_shell(['breach'])
def test_extract_preimage(self):
self.run_shell(['extract_preimage'])
def test_redeem_htlcs(self):
self.run_shell(['redeem_htlcs'])
def test_breach_with_unspent_htlc(self):
self.run_shell(['breach_with_unspent_htlc'])
def test_breach_with_spent_htlc(self):
self.run_shell(['breach_with_spent_htlc'])
class TestLightningSwapserver(TestLightning):
agents = {
'alice': {
'use_gossip': 'false',
},
'bob': {
'lightning_listen': 'localhost:9735',
'use_swapserver': 'true',
}
}
def test_swapserver_success(self):
self.run_shell(['swapserver_success'])
def test_swapserver_refund(self):
self.run_shell(['swapserver_refund'])
class TestLightningWatchtower(TestLightning):
agents = {
'alice':{
},
'bob':{
'lightning_listen': 'localhost:9735',
'watchtower_url': 'http://wtuser:wtpassword@127.0.0.1:12345',
},
'carol':{
'run_watchtower': 'true',
'watchtower_user': 'wtuser',
'watchtower_password': 'wtpassword',
'watchtower_port': '12345',
}
}
def test_watchtower(self):
self.run_shell(['watchtower'])
class TestLightningJIT(TestLightning):
agents = {
'alice':{
'accept_zeroconf_channels': 'true',
},
'bob':{
'lightning_listen': 'localhost:9735',
'lightning_forward_payments': 'true',
'accept_zeroconf_channels': 'true',
},
'carol':{
}
}
def test_just_in_time(self):
self.run_shell(['just_in_time'])
class TestLightningJITTrampoline(TestLightningJIT):
agents = {
'alice':{
'use_gossip': 'false',
'accept_zeroconf_channels': 'true',
},
'bob':{
'lightning_listen': 'localhost:9735',
'lightning_forward_payments': 'true',
'lightning_forward_trampoline_payments': 'true',
'accept_zeroconf_channels': 'true',
},
'carol':{
'use_gossip': 'false',
}
}
|