Source code for tests

#!/usr/bin/env python3
"""
Privex Golos-Python Unit Tests

**To run these tests**:

.. code-block:: bash

    pip3 install -r requirements.txt
    pytest -v tests.py


**Enabling extra logging output**:

If you want to see the logging output of the library, use the ``DEBUG`` environment variable, and execute ``tests.py``
directly (not via pytest, as pytest will filter out the log messages):


.. code-block:: bash

    DEBUG=true ./tests.py -vv


**Copyright**::

    +===================================================+
    |                 © 2019 Privex Inc.                |
    |               https://www.privex.io               |
    +===================================================+
    |                                                   |
    |        Privex's Golos Library                     |
    |        License: X11/MIT                           |
    |                                                   |
    |        Core Developer(s):                         |
    |                                                   |
    |          (+)  Chris (@someguy123) [Privex]        |
    |                                                   |
    +===================================================+

    Privex's Golos Python Library
    Copyright (c) 2019    Privex Inc. ( https://www.privex.io )

    Permission is hereby granted, free of charge, to any person obtaining a copy of
    this software and associated documentation files (the "Software"), to deal in
    the Software without restriction, including without limitation the rights to use,
    copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
    Software, and to permit persons to whom the Software is furnished to do so,
    subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
    INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
    PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


"""
import unittest
import logging

from golos.extras import dict_sort
from golos import Api, storage, Key, exceptions
from privex.loghelper import LogHelper
from privex.helpers import env_bool

NODES = ['wss://golosd.privex.io'] + storage.nodes
TEST_ACCOUNTS = ['someguy123', 'ksantoprotein']
TEST_WITNESSES = ['someguy123']

TEST_TXS = [
    {
        'op': {'from':   'someguy123', 'to': 'ksantoprotein', 'amount': '0.100 GOLOS', 'memo': 'testing',
               'number': 127287, 'block': 30895436, 'timestamp': '2019-10-01T12:49:00', 'type_op': 'transfer'},
        'tx': dict(
            ref_block_num=27979, ref_block_prefix=3018856747, expiration='2019-10-01T12:50:00',
            block_num=30895436, transaction_id='c901c52daf57b60242d9d7be67f790e023cf2780', transaction_num=1,
            operations=[[
                'transfer',
                {'from': 'someguy123', 'to': 'ksantoprotein', 'amount': '0.100 GOLOS', 'memo': 'testing'}
            ]], extensions=[],
            signatures=[
                '1f1a0212f7b9fe263acaeadf1ec127000dc234c413b543e3c268d251e8d8205b95746f3aa102805eb85d5ee72bf1c80b7' +
                '14fadf081d29138a6ddab085dafa28604'
            ]),
        'txid': 'c901c52daf57b60242d9d7be67f790e023cf2780',
    }
]

IGNORE_KEYS_FIND = ['transaction_id', 'block_num', 'transaction_num']

DEBUG = env_bool('DEBUG', False)

lh = LogHelper('golos', handler_level=logging.DEBUG if DEBUG else logging.CRITICAL)
lh.add_console_handler()
log = lh.get_logger()


[docs]class GolosTestCase(unittest.TestCase):
[docs] def setUp(self): self.golos = Api(nodes=NODES, report=DEBUG)
[docs] def test_get_account(self): """Testing Api.get_accounts returns valid account dictionaries""" a = self.golos.get_accounts(TEST_ACCOUNTS) self.assertIs(type(a), list) self.assertEqual(len(a), len(TEST_ACCOUNTS)) for i, acc in enumerate(a): # log.info('get_accounts %s = %s', acc, a) self.assertIs(type(acc), dict, msg=f'type(acc) is dict') self.assertIn('name', acc, msg=f"'name' in acc") self.assertEqual(acc['name'], TEST_ACCOUNTS[i], msg=f'{acc["name"]} == {TEST_ACCOUNTS[i]}') self.assertIs(type(acc['owner']), dict, msg="type(acc['owner']) is dict") self.assertIs(type(acc['mined']), bool, msg="type(acc['mined']) is bool") self.assertIs(type(acc['witness_votes']), list, msg="type(acc['witness_votes']) is list")
[docs] def test_get_account_history(self): """Testing Api.get_account_history returns a non-empty list containing valid history items""" for a in TEST_ACCOUNTS: h = self.golos.get_account_history(account=a) self.assertIs(type(h), list) self.assertGreater(len(h), 0) for x in h: self.assertIs(type(x), dict) self.assertIn('type_op', x)
[docs] def test_get_witness(self): """Testing Api.get_witness returns a valid witness info dictionary""" for a in TEST_WITNESSES: w = self.golos.get_witness_by_account(a) self.assertIs(type(w), dict) self.assertEqual(w['owner'], a) self.assertIs(type(w['props']), dict) self.assertIs(type(w['total_missed']), int)
[docs] def test_find_tx(self): """Test Api.find_op_transaction returns the correct transaction from an operation""" for i, t in enumerate(TEST_TXS): _tx = self.golos.find_op_transaction(op=t['op']) tx_bc = dict_sort(_tx) clean_tx = {k: v for k, v in dict(t['tx']).items() if k not in IGNORE_KEYS_FIND} tx_orig = dict_sort(clean_tx) self.assertEqual(tx_bc, tx_orig, msg=f'(TX {i}) tx_bc == tx_orig')
[docs] def test_find_tx_no_exist(self): """Test Api.find_op_transaction raises TransactionNotFound with a non-existent operation""" op = {'from': 'fake', 'to': 'otherfake', 'amount': '1.200 GOLOS', 'block': 12345} with self.assertRaises(exceptions.TransactionNotFound): self.golos.find_op_transaction(op=op)
[docs] def test_get_transaction(self): """Test Api.get_transaction returns the correct transaction from a TXID""" for i, t in enumerate(TEST_TXS): _tx = self.golos.get_transaction(t['txid']) tx_bc = dict_sort(_tx) tx_orig = dict_sort(t['tx']) self.assertEqual(tx_bc, tx_orig, msg=f'(TX {i}) tx_bc == tx_orig')
[docs] def test_get_transaction_no_exist(self): """Test Api.get_transaction raises TransactionNotFound with a non-existent TXID""" with self.assertRaises(exceptions.TransactionNotFound): self.golos.get_transaction('d901c52daf57b602abd9d7be67f790e023cf27fc')
[docs] def test_get_transaction_id(self): """Test Api.get_transaction_id generates the correct TXID from a transaction ``dict``""" for i, t in enumerate(TEST_TXS): txid_bc = self.golos.get_transaction_id(t['tx']) self.assertEqual(txid_bc, t['txid'], msg='txid_bc == t["txid"]')
[docs]class GolosKeyTests(unittest.TestCase):
[docs] def test_compare_keys(self): """Test that Key.is_key correctly verifies a public key matches a private key""" kp1 = '5Jq19TeeVmGrBFnu32oxfxQMiipnSCKmwW7fZGUVLAoqsKJ9JwP', \ 'GLS7qHue1h2eWV8M7WKtb6F8dbhKfEFvLVy9JqvSTHBBEM5JMdsmh' kp2 = '5KPQo2iNeACYagW5qAsgNpFxDDuwuArCCG8PvU6FKTMcD5LmhzJ', \ 'GLS8G7rgqhPUbyzYVYWb8BPcHtpgLDmJYooHmHPbaLaH7cdywsdwm' t1 = Key.is_key(kp1[0], kp1[1]) # Compare keypair 1's private key against it's own public key t2 = Key.is_key(kp1[0], kp2[1]) # Compare keypair 1's private key against keypair 2's public key self.assertTrue(t1) self.assertFalse(t2)
[docs] def test_get_public(self): """Test Key.get_public_from_private returns the correct public key""" pub = Key.get_public_from_private('5Jq19TeeVmGrBFnu32oxfxQMiipnSCKmwW7fZGUVLAoqsKJ9JwP') self.assertEqual(pub, 'GLS7qHue1h2eWV8M7WKtb6F8dbhKfEFvLVy9JqvSTHBBEM5JMdsmh')
[docs] def test_account_keys(self): """Test Key.get_keys correctly generates account public/private keys""" acc = Key.get_keys('someguy123', 'example') for r in Key.roles: self.assertIn(r, acc['private'], msg=f'{r} in acc["private"]') self.assertIn(r, acc['public'], msg=f'{r} in acc["public"]') self.assertEqual(acc['private']['active'], '5KME2a7DBdGBdpAwLC4tGmJ8mSz9HgZkcMtKc8rkADn6cLZyvPc') self.assertEqual(acc['public']['active'], 'GLS7LjcmXF4mf9z3MNgcceSvMG8oezEtGhcL4yAXpJWFZxdX47ET7')
if __name__ == "__main__": unittest.main()