2018-04-16 20:19:30 +02:00
|
|
|
"""
|
|
|
|
Tests using API.
|
|
|
|
"""
|
|
|
|
|
2018-04-10 17:31:44 +02:00
|
|
|
import base64
|
|
|
|
import json
|
2018-05-08 16:39:07 +02:00
|
|
|
import xmlrpclib # nosec
|
2018-04-10 17:31:44 +02:00
|
|
|
from time import sleep
|
|
|
|
|
2018-04-12 16:29:22 +02:00
|
|
|
from test_process import TestProcessProto
|
|
|
|
|
|
|
|
|
|
|
|
class TestAPI(TestProcessProto):
|
2018-04-16 20:19:30 +02:00
|
|
|
"""A test case for API"""
|
2018-04-12 16:29:22 +02:00
|
|
|
_process_cmd = ['pybitmessage', '-t']
|
2018-04-12 17:49:20 +02:00
|
|
|
_seed = base64.encodestring(
|
|
|
|
'TIGER, tiger, burning bright. In the forests of the night'
|
|
|
|
)
|
2018-04-10 17:31:44 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
2018-04-16 20:19:30 +02:00
|
|
|
"""Setup XMLRPC proxy for pybitmessage API"""
|
2018-04-12 16:29:22 +02:00
|
|
|
super(TestAPI, cls).setUpClass()
|
2018-04-10 17:31:44 +02:00
|
|
|
cls.addresses = []
|
|
|
|
cls.api = xmlrpclib.ServerProxy(
|
|
|
|
"http://username:password@127.0.0.1:8442/")
|
2018-04-16 20:19:30 +02:00
|
|
|
for _ in range(0, 5):
|
2018-04-12 16:29:22 +02:00
|
|
|
if cls._get_readline('.api_started'):
|
2018-04-10 17:31:44 +02:00
|
|
|
print('API start detected!')
|
|
|
|
return
|
2018-04-12 16:29:22 +02:00
|
|
|
sleep(1)
|
2018-04-10 17:31:44 +02:00
|
|
|
|
2018-04-11 17:55:43 +02:00
|
|
|
def _add_random_address(self, label):
|
|
|
|
return self.api.createRandomAddress(base64.encodestring(label))
|
|
|
|
|
2018-04-10 17:31:44 +02:00
|
|
|
def test_user_password(self):
|
2018-04-12 12:34:37 +02:00
|
|
|
"""Trying to connect with wrong username/password"""
|
2018-04-10 17:31:44 +02:00
|
|
|
api_wrong = xmlrpclib.ServerProxy("http://test:wrong@127.0.0.1:8442/")
|
|
|
|
self.assertEqual(
|
|
|
|
api_wrong.clientStatus(),
|
|
|
|
'RPC Username or password incorrect or HTTP header lacks'
|
|
|
|
' authentication at all.'
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_connection(self):
|
2018-04-12 12:34:37 +02:00
|
|
|
"""API command 'helloWorld'"""
|
2018-04-10 17:31:44 +02:00
|
|
|
self.assertEqual(
|
|
|
|
self.api.helloWorld('hello', 'world'),
|
|
|
|
'hello-world'
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_arithmetic(self):
|
2018-04-12 12:34:37 +02:00
|
|
|
"""API command 'add'"""
|
2018-04-10 17:31:44 +02:00
|
|
|
self.assertEqual(self.api.add(69, 42), 111)
|
|
|
|
|
|
|
|
def test_invalid_method(self):
|
2018-04-12 12:34:37 +02:00
|
|
|
"""Issuing nonexistent command 'test'"""
|
2018-04-10 17:31:44 +02:00
|
|
|
self.assertEqual(
|
|
|
|
self.api.test(),
|
|
|
|
'API Error 0020: Invalid method: test'
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_list_addresses(self):
|
2018-04-12 12:34:37 +02:00
|
|
|
"""Checking the return of API command 'listAddresses'"""
|
2018-04-10 17:31:44 +02:00
|
|
|
self.assertEqual(
|
|
|
|
json.loads(self.api.listAddresses()).get('addresses'),
|
|
|
|
self.addresses
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_decode_address(self):
|
2018-04-12 12:34:37 +02:00
|
|
|
"""Checking the return of API command 'decodeAddress'"""
|
2018-04-10 17:31:44 +02:00
|
|
|
result = json.loads(
|
|
|
|
self.api.decodeAddress('BM-2cWzSnwjJ7yRP3nLEWUV5LisTZyREWSzUK'))
|
|
|
|
self.assertEqual(result.get('status'), 'success')
|
|
|
|
self.assertEqual(result['addressVersion'], 4)
|
|
|
|
self.assertEqual(result['streamNumber'], 1)
|
|
|
|
|
|
|
|
def test_create_deterministic_addresses(self):
|
2018-04-12 12:34:37 +02:00
|
|
|
"""API command 'getDeterministicAddress': with various params"""
|
2018-04-10 17:31:44 +02:00
|
|
|
self.assertEqual(
|
2018-04-12 17:49:20 +02:00
|
|
|
self.api.getDeterministicAddress(self._seed, 4, 1),
|
2018-04-10 17:31:44 +02:00
|
|
|
'BM-2cWzSnwjJ7yRP3nLEWUV5LisTZyREWSzUK'
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
2018-04-12 17:49:20 +02:00
|
|
|
self.api.getDeterministicAddress(self._seed, 3, 1),
|
2018-04-10 17:31:44 +02:00
|
|
|
'BM-2DBPTgeSawWYZceFD69AbDT5q4iUWtj1ZN'
|
|
|
|
)
|
2018-04-12 12:34:37 +02:00
|
|
|
self.assertRegexpMatches(
|
2018-04-12 17:49:20 +02:00
|
|
|
self.api.getDeterministicAddress(self._seed, 2, 1),
|
2018-04-12 12:34:37 +02:00
|
|
|
r'^API Error 0002:'
|
|
|
|
)
|
|
|
|
# This is here until the streams will be implemented
|
|
|
|
self.assertRegexpMatches(
|
2018-04-12 17:49:20 +02:00
|
|
|
self.api.getDeterministicAddress(self._seed, 3, 2),
|
2018-04-12 12:34:37 +02:00
|
|
|
r'API Error 0003:'
|
|
|
|
)
|
2018-04-10 17:31:44 +02:00
|
|
|
|
2018-04-11 17:55:43 +02:00
|
|
|
def test_create_random_address(self):
|
2018-04-12 12:34:37 +02:00
|
|
|
"""API command 'createRandomAddress': basic BM-address validation"""
|
2018-04-11 17:55:43 +02:00
|
|
|
addr = self._add_random_address('random_1')
|
|
|
|
self.assertRegexpMatches(addr, r'^BM-')
|
|
|
|
self.assertRegexpMatches(addr[3:], r'[a-zA-Z1-9]+$')
|
|
|
|
self.assertEqual(self.api.deleteAddress(addr), 'success')
|
2018-04-10 17:31:44 +02:00
|
|
|
|
|
|
|
def test_addressbook(self):
|
2018-04-12 12:34:37 +02:00
|
|
|
"""Testing API commands for addressbook manipulations"""
|
2018-04-10 17:31:44 +02:00
|
|
|
# Initially it's empty
|
|
|
|
self.assertEqual(
|
|
|
|
json.loads(self.api.listAddressBookEntries()).get('addresses'),
|
|
|
|
[]
|
|
|
|
)
|
|
|
|
# Add known address
|
|
|
|
self.api.addAddressBookEntry(
|
|
|
|
'BM-2cWzSnwjJ7yRP3nLEWUV5LisTZyREWSzUK',
|
|
|
|
base64.encodestring('tiger_4')
|
|
|
|
)
|
|
|
|
# Check addressbook entry
|
|
|
|
entries = json.loads(
|
|
|
|
self.api.listAddressBookEntries()).get('addresses')[0]
|
|
|
|
self.assertEqual(
|
|
|
|
entries['address'], 'BM-2cWzSnwjJ7yRP3nLEWUV5LisTZyREWSzUK')
|
|
|
|
self.assertEqual(
|
|
|
|
base64.decodestring(entries['label']), 'tiger_4')
|
|
|
|
# Remove known address
|
|
|
|
self.api.deleteAddressBookEntry(
|
|
|
|
'BM-2cWzSnwjJ7yRP3nLEWUV5LisTZyREWSzUK')
|
|
|
|
# Addressbook should be empty again
|
|
|
|
self.assertEqual(
|
|
|
|
json.loads(self.api.listAddressBookEntries()).get('addresses'),
|
|
|
|
[]
|
|
|
|
)
|
2018-04-11 17:55:43 +02:00
|
|
|
|
2018-04-12 12:34:37 +02:00
|
|
|
def test_send_broadcast(self):
|
|
|
|
"""API command 'sendBroadcast': ensure it returns ackData"""
|
|
|
|
addr = self._add_random_address('random_2')
|
|
|
|
ack = self.api.sendBroadcast(
|
|
|
|
addr, base64.encodestring('test_subject'),
|
|
|
|
base64.encodestring('test message')
|
|
|
|
)
|
|
|
|
try:
|
|
|
|
int(ack, 16)
|
|
|
|
except ValueError:
|
|
|
|
self.fail('sendBroadcast returned error or ackData is not hex')
|
|
|
|
finally:
|
|
|
|
self.assertEqual(self.api.deleteAddress(addr), 'success')
|
2018-04-12 17:49:20 +02:00
|
|
|
|
|
|
|
def test_chan(self):
|
|
|
|
"""Testing chan creation/joining"""
|
|
|
|
# Cheate chan with known address
|
|
|
|
self.assertEqual(
|
|
|
|
self.api.createChan(self._seed),
|
|
|
|
'BM-2cWzSnwjJ7yRP3nLEWUV5LisTZyREWSzUK'
|
|
|
|
)
|
|
|
|
# cleanup
|
|
|
|
self.assertEqual(
|
|
|
|
self.api.leaveChan('BM-2cWzSnwjJ7yRP3nLEWUV5LisTZyREWSzUK'),
|
|
|
|
'success'
|
|
|
|
)
|
|
|
|
# Join chan with addresses of version 3 or 4
|
|
|
|
for addr in (
|
|
|
|
'BM-2cWzSnwjJ7yRP3nLEWUV5LisTZyREWSzUK',
|
|
|
|
'BM-2DBPTgeSawWYZceFD69AbDT5q4iUWtj1ZN'
|
|
|
|
):
|
|
|
|
self.assertEqual(self.api.joinChan(self._seed, addr), 'success')
|
|
|
|
self.assertEqual(self.api.leaveChan(addr), 'success')
|
|
|
|
# Joining with wrong address should fail
|
|
|
|
self.assertRegexpMatches(
|
|
|
|
self.api.joinChan(self._seed, 'BM-2cWzSnwjJ7yRP3nLEW'),
|
|
|
|
r'^API Error 0008:'
|
|
|
|
)
|