Parametrize Flexpool tests
Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
parent
4cd278c60e
commit
9d75604869
1 changed files with 46 additions and 100 deletions
|
@ -1,5 +1,6 @@
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
|
|
||||||
|
import pytest
|
||||||
from companion.pools.flexpool import FlexpoolHandler, Transaction
|
from companion.pools.flexpool import FlexpoolHandler, Transaction
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,113 +9,58 @@ class TestFlexpoolHandler:
|
||||||
handler = FlexpoolHandler()
|
handler = FlexpoolHandler()
|
||||||
assert handler.pool_name == 'flexpool'
|
assert handler.pool_name == 'flexpool'
|
||||||
|
|
||||||
def test_new_balance_with_notification(self, mocker):
|
@pytest.mark.parametrize(
|
||||||
"""Old balance is 1, new balance is 2, should send notification"""
|
'old_balance,new_balance,should_notify',
|
||||||
notifier = mocker.Mock()
|
[
|
||||||
notifier.notify_balance = mocker.Mock()
|
pytest.param(1, 2, True, id='new_balance_with_notification'),
|
||||||
handler = FlexpoolHandler(notifier=notifier)
|
pytest.param(1, 0, True, id='new_balance_after_payment_with_notification'),
|
||||||
miner = mocker.patch('flexpoolapi.miner')
|
pytest.param(None, 1, True, id='very_new_balance_with_notification'),
|
||||||
miner().balance.return_value = 2
|
pytest.param(1, 1, False, id='same_balance_without_notification'),
|
||||||
mocker.patch('companion.pools.flexpool.FlexpoolHandler._watch_miner_payments')
|
|
||||||
mocker.patch('companion.pools.flexpool.Miner.get_payements')
|
|
||||||
last_balance, last_transaction = handler.watch_miner(address='addr', last_balance=1)
|
|
||||||
assert last_balance == 2
|
|
||||||
notifier.notify_balance.assert_called_once()
|
|
||||||
|
|
||||||
def test_new_balance_after_payment_with_notification(self, mocker):
|
|
||||||
"""Old balance is 0, new balance is 1 (old > new), should send notification"""
|
|
||||||
notifier = mocker.Mock()
|
|
||||||
notifier.notify_balance = mocker.Mock()
|
|
||||||
handler = FlexpoolHandler(notifier=notifier)
|
|
||||||
miner = mocker.patch('flexpoolapi.miner')
|
|
||||||
miner().balance.return_value = 0
|
|
||||||
mocker.patch('companion.pools.flexpool.FlexpoolHandler._watch_miner_payments')
|
|
||||||
mocker.patch('companion.pools.flexpool.Miner.get_payements')
|
|
||||||
last_balance, last_transaction = handler.watch_miner(address='addr', last_balance=1)
|
|
||||||
assert last_balance == 0
|
|
||||||
notifier.notify_balance.assert_called_once()
|
|
||||||
|
|
||||||
def test_very_new_balance_with_notification(self, mocker):
|
|
||||||
"""Old balance doesn't exist, new balance is 1, should send notification"""
|
|
||||||
notifier = mocker.Mock()
|
|
||||||
notifier.notify_balance = mocker.Mock()
|
|
||||||
handler = FlexpoolHandler(notifier=notifier)
|
|
||||||
miner = mocker.patch('flexpoolapi.miner')
|
|
||||||
miner().balance.return_value = 1
|
|
||||||
mocker.patch('companion.pools.flexpool.FlexpoolHandler._watch_miner_payments')
|
|
||||||
mocker.patch('companion.pools.flexpool.Miner.get_payements')
|
|
||||||
last_balance, last_transaction = handler.watch_miner(address='addr')
|
|
||||||
assert last_balance == 1
|
|
||||||
notifier.notify_balance.assert_called_once()
|
|
||||||
|
|
||||||
def test_same_balance_without_notification(self, mocker):
|
|
||||||
"""Old balance and new balance are the same, should not send notification"""
|
|
||||||
notifier = mocker.Mock()
|
|
||||||
notifier.notify_balance = mocker.Mock()
|
|
||||||
handler = FlexpoolHandler(notifier=notifier)
|
|
||||||
miner = mocker.patch('flexpoolapi.miner')
|
|
||||||
miner().balance.return_value = 1
|
|
||||||
mocker.patch('companion.pools.flexpool.FlexpoolHandler._watch_miner_payments')
|
|
||||||
mocker.patch('companion.pools.flexpool.Miner.get_payements')
|
|
||||||
last_balance, last_transaction = handler.watch_miner(address='addr', last_balance=1)
|
|
||||||
assert last_balance == 1
|
|
||||||
notifier.notify_balance.assert_not_called()
|
|
||||||
|
|
||||||
def test_new_payment_with_notification(self, mocker):
|
|
||||||
"""One transaction saved (trx1), two transactions detected (trx1, trx2), should send notification"""
|
|
||||||
notifier = mocker.Mock()
|
|
||||||
notifier.notify_payment = mocker.Mock()
|
|
||||||
handler = FlexpoolHandler(notifier=notifier)
|
|
||||||
mocker.patch('flexpoolapi.miner')
|
|
||||||
mocker.patch('companion.pools.flexpool.FlexpoolHandler._watch_miner_balance')
|
|
||||||
get_payements = mocker.patch('companion.pools.flexpool.Miner.get_payements')
|
|
||||||
get_payements.return_value = [
|
|
||||||
Transaction(txid='trx1', amount=1, time=datetime.now(), duration=timedelta(minutes=1)),
|
|
||||||
Transaction(txid='trx2', amount=1, time=datetime.now(), duration=timedelta(minutes=1))
|
|
||||||
]
|
]
|
||||||
last_balance, last_transaction = handler.watch_miner(address='addr', last_transaction='trx1')
|
)
|
||||||
assert last_transaction == 'trx2'
|
def test_balance(self, mocker, old_balance, new_balance, should_notify):
|
||||||
notifier.notify_payment.assert_called_once()
|
|
||||||
|
|
||||||
def test_very_new_payment_with_notification(self, mocker):
|
|
||||||
"""No transaction saved, one transaction detected (trx1), should send notification"""
|
|
||||||
notifier = mocker.Mock()
|
notifier = mocker.Mock()
|
||||||
notifier.notify_payment = mocker.Mock()
|
notifier.notify_balance = mocker.Mock()
|
||||||
handler = FlexpoolHandler(notifier=notifier)
|
handler = FlexpoolHandler(notifier=notifier)
|
||||||
mocker.patch('flexpoolapi.miner')
|
miner = mocker.patch('flexpoolapi.miner')
|
||||||
mocker.patch('companion.pools.flexpool.FlexpoolHandler._watch_miner_balance')
|
miner().balance.return_value = new_balance
|
||||||
get_payements = mocker.patch('companion.pools.flexpool.Miner.get_payements')
|
mocker.patch('companion.pools.flexpool.FlexpoolHandler._watch_miner_payments')
|
||||||
get_payements.return_value = [
|
mocker.patch('companion.pools.flexpool.Miner.get_payements')
|
||||||
Transaction(txid='trx1', amount=1, time=datetime.now(), duration=timedelta(minutes=1))
|
last_balance, last_transaction = handler.watch_miner(address='addr', last_balance=old_balance)
|
||||||
|
assert last_balance == new_balance
|
||||||
|
if should_notify:
|
||||||
|
notifier.notify_balance.assert_called_once()
|
||||||
|
else:
|
||||||
|
notifier.notify_balance.assert_not_called()
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def _create_transactions(names):
|
||||||
|
if names:
|
||||||
|
return [Transaction(txid=n, amount=1, time=datetime.now(), duration=timedelta(minutes=1)) for n in names]
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
'old_transaction,new_transactions,should_notify',
|
||||||
|
[
|
||||||
|
pytest.param('trx1', ['trx1', 'trx2'], True, id='new_payment_with_notification'),
|
||||||
|
pytest.param(None, ['trx1'], True, id='very_new_payment_with_notification'),
|
||||||
|
pytest.param('trx1', ['trx1'], False, id='same_payment_without_notification'),
|
||||||
|
pytest.param(None, None, False, id='zero_payment_without_notification'),
|
||||||
]
|
]
|
||||||
last_balance, last_transaction = handler.watch_miner(address='addr', last_transaction=None)
|
)
|
||||||
assert last_transaction == 'trx1'
|
def test_payments(self, mocker, old_transaction, new_transactions, should_notify):
|
||||||
notifier.notify_payment.assert_called_once()
|
|
||||||
|
|
||||||
def test_same_payment_without_notification(self, mocker):
|
|
||||||
"""One transaction saved (trx1), one transaction detected (trx1), should not send notification"""
|
|
||||||
notifier = mocker.Mock()
|
notifier = mocker.Mock()
|
||||||
notifier.notify_payment = mocker.Mock()
|
notifier.notify_payment = mocker.Mock()
|
||||||
handler = FlexpoolHandler(notifier=notifier)
|
handler = FlexpoolHandler(notifier=notifier)
|
||||||
mocker.patch('flexpoolapi.miner')
|
mocker.patch('flexpoolapi.miner')
|
||||||
mocker.patch('companion.pools.flexpool.FlexpoolHandler._watch_miner_balance')
|
mocker.patch('companion.pools.flexpool.FlexpoolHandler._watch_miner_balance')
|
||||||
get_payements = mocker.patch('companion.pools.flexpool.Miner.get_payements')
|
get_payements = mocker.patch('companion.pools.flexpool.Miner.get_payements')
|
||||||
get_payements.return_value = [
|
get_payements.return_value = self._create_transactions(new_transactions)
|
||||||
Transaction(txid='trx1', amount=1, time=datetime.now(), duration=timedelta(minutes=1))
|
last_balance, last_transaction = handler.watch_miner(address='addr', last_transaction=old_transaction)
|
||||||
]
|
if new_transactions:
|
||||||
last_balance, last_transaction = handler.watch_miner(address='addr', last_transaction='trx1')
|
assert last_transaction == new_transactions[-1]
|
||||||
assert last_transaction == 'trx1'
|
else:
|
||||||
notifier.notify_payment.assert_not_called()
|
assert last_transaction is None
|
||||||
|
if should_notify:
|
||||||
def test_zero_payment_without_notification(self, mocker):
|
notifier.notify_payment.assert_called_once()
|
||||||
"""Zero transaction saved, zero transaction detected, should not send notification"""
|
else:
|
||||||
notifier = mocker.Mock()
|
notifier.notify_payment.assert_not_called()
|
||||||
notifier.notify_payment = mocker.Mock()
|
|
||||||
handler = FlexpoolHandler(notifier=notifier)
|
|
||||||
mocker.patch('flexpoolapi.miner')
|
|
||||||
mocker.patch('companion.pools.flexpool.FlexpoolHandler._watch_miner_balance')
|
|
||||||
get_payements = mocker.patch('companion.pools.flexpool.Miner.get_payements')
|
|
||||||
get_payements.return_value = []
|
|
||||||
last_balance, last_transaction = handler.watch_miner(address='addr', last_transaction=None)
|
|
||||||
assert last_transaction is None
|
|
||||||
notifier.notify_payment.assert_not_called()
|
|
||||||
|
|
Reference in a new issue