Add "state" tests
Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
parent
6f4312cb4f
commit
14aa8a6d59
21 changed files with 116 additions and 3 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -2,3 +2,5 @@ venv
|
||||||
__pycache__
|
__pycache__
|
||||||
config.json
|
config.json
|
||||||
state.json
|
state.json
|
||||||
|
.coverage
|
||||||
|
test_state.json
|
||||||
|
|
|
@ -61,7 +61,7 @@ All options are optional (but the companion would do nothing).
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```
|
```
|
||||||
python3 main.py --help
|
python3 companion/main.py --help
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
@ -69,12 +69,14 @@ python3 main.py --help
|
||||||
|
|
||||||
Contributions are welcomed! Feel free to update the code and create a pull-request.
|
Contributions are welcomed! Feel free to update the code and create a pull-request.
|
||||||
|
|
||||||
Be sure to lint the code before:
|
Be sure to lint the code and run tests before:
|
||||||
|
|
||||||
```
|
```
|
||||||
docker build -t pre-commit .
|
docker build -t pre-commit .
|
||||||
docker run -it -v $(pwd):/mnt/ --rm pre-commit bash
|
docker run -it -v $(pwd):/mnt/ --rm pre-commit bash
|
||||||
# cd /mnt/
|
# cd /mnt/
|
||||||
|
# pip install -r requirements.txt
|
||||||
# pre-commit run --all-files
|
# pre-commit run --all-files
|
||||||
|
# pytest
|
||||||
# exit
|
# exit
|
||||||
```
|
```
|
||||||
|
|
0
companion/__init__.py
Normal file
0
companion/__init__.py
Normal file
|
@ -20,7 +20,7 @@ class State:
|
||||||
content = self.read()
|
content = self.read()
|
||||||
if pool_name not in content:
|
if pool_name not in content:
|
||||||
content[pool_name] = {}
|
content[pool_name] = {}
|
||||||
if block_number:
|
if block_number is not None:
|
||||||
content[pool_name]['block'] = block_number
|
content[pool_name]['block'] = block_number
|
||||||
if miner_balance is not None:
|
if miner_balance is not None:
|
||||||
content[pool_name]['balance'] = miner_balance
|
content[pool_name]['balance'] = miner_balance
|
2
pytest.ini
Normal file
2
pytest.ini
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[pytest]
|
||||||
|
addopts = --cov=companion tests/
|
|
@ -1,3 +1,4 @@
|
||||||
-r requirements/base.txt
|
-r requirements/base.txt
|
||||||
-r requirements/ethermine.txt
|
-r requirements/ethermine.txt
|
||||||
-r requirements/flexpool.txt
|
-r requirements/flexpool.txt
|
||||||
|
-r requirements/tests.txt
|
||||||
|
|
2
requirements/tests.txt
Normal file
2
requirements/tests.txt
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
pytest==6.2.2
|
||||||
|
pytest-cov==2.11.1
|
4
tests/__init__.py
Normal file
4
tests/__init__.py
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
|
sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'companion'))
|
100
tests/test_state.py
Normal file
100
tests/test_state.py
Normal file
|
@ -0,0 +1,100 @@
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
from companion.state import State
|
||||||
|
|
||||||
|
|
||||||
|
class TestState:
|
||||||
|
FILENAME = 'test_state.json'
|
||||||
|
POOL_NAME = 'testpool'
|
||||||
|
CONTENT = {
|
||||||
|
'testpool': {
|
||||||
|
'block': 1234,
|
||||||
|
'balance': 1234,
|
||||||
|
'payment': '0x0000000'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@pytest.fixture(scope='function')
|
||||||
|
def state(self):
|
||||||
|
return State(self.FILENAME)
|
||||||
|
|
||||||
|
@pytest.fixture(scope='function')
|
||||||
|
def create_state(self):
|
||||||
|
with open(self.FILENAME, 'w') as fd:
|
||||||
|
json.dump(self.CONTENT, fd, indent=2)
|
||||||
|
yield
|
||||||
|
if os.path.isfile(self.FILENAME):
|
||||||
|
os.unlink(self.FILENAME)
|
||||||
|
|
||||||
|
@pytest.fixture(scope='function')
|
||||||
|
def remove_state(self):
|
||||||
|
yield
|
||||||
|
if os.path.isfile(self.FILENAME):
|
||||||
|
os.unlink(self.FILENAME)
|
||||||
|
|
||||||
|
def test_init(self, state, remove_state):
|
||||||
|
assert os.path.isfile(self.FILENAME)
|
||||||
|
with open(self.FILENAME, 'r') as fd:
|
||||||
|
assert json.load(fd) == {}
|
||||||
|
|
||||||
|
def test_read(self, state, create_state):
|
||||||
|
content = state.read()
|
||||||
|
for pool in self.CONTENT:
|
||||||
|
assert pool in content
|
||||||
|
for key in self.CONTENT[pool]:
|
||||||
|
assert key in content[pool] and content[pool][key] == self.CONTENT[pool][key]
|
||||||
|
|
||||||
|
def test_write(self, state):
|
||||||
|
state.write(pool_name=self.POOL_NAME)
|
||||||
|
content = state.read()
|
||||||
|
assert content[self.POOL_NAME] == {}
|
||||||
|
|
||||||
|
def test_write_block(self, create_state, state):
|
||||||
|
state.write(pool_name=self.POOL_NAME, block_number=5678)
|
||||||
|
content = state.read()
|
||||||
|
assert content[self.POOL_NAME]['block'] == 5678
|
||||||
|
|
||||||
|
def test_write_empty_block(self, create_state, state):
|
||||||
|
state.write(pool_name=self.POOL_NAME, block_number=None)
|
||||||
|
content = state.read()
|
||||||
|
assert content[self.POOL_NAME]['block'] == self.CONTENT[self.POOL_NAME]['block'] # not changed
|
||||||
|
|
||||||
|
def test_write_zero_block(self, create_state, state):
|
||||||
|
state.write(pool_name=self.POOL_NAME, block_number=0)
|
||||||
|
content = state.read()
|
||||||
|
assert content[self.POOL_NAME]['block'] == 0
|
||||||
|
|
||||||
|
def test_write_balance(self, create_state, state):
|
||||||
|
state.write(pool_name=self.POOL_NAME, miner_balance=5678)
|
||||||
|
content = state.read()
|
||||||
|
assert content[self.POOL_NAME]['balance'] == 5678
|
||||||
|
|
||||||
|
def test_write_empty_balance(self, create_state, state):
|
||||||
|
state.write(pool_name=self.POOL_NAME, miner_balance=None)
|
||||||
|
content = state.read()
|
||||||
|
assert content[self.POOL_NAME]['balance'] == self.CONTENT[self.POOL_NAME]['balance'] # not changed
|
||||||
|
|
||||||
|
def test_write_zero_balance(self, create_state, state):
|
||||||
|
state.write(pool_name=self.POOL_NAME, miner_balance=0)
|
||||||
|
content = state.read()
|
||||||
|
assert content[self.POOL_NAME]['balance'] == 0
|
||||||
|
|
||||||
|
def test_write_payment(self, create_state, state):
|
||||||
|
state.write(pool_name=self.POOL_NAME, miner_payment='0x1111111')
|
||||||
|
content = state.read()
|
||||||
|
assert content[self.POOL_NAME]['payment'] == '0x1111111'
|
||||||
|
|
||||||
|
def test_write_empty_payment(self, create_state, state):
|
||||||
|
state.write(pool_name=self.POOL_NAME, miner_payment=None)
|
||||||
|
content = state.read()
|
||||||
|
assert content[self.POOL_NAME]['payment'] == self.CONTENT[self.POOL_NAME]['payment'] # not changed
|
||||||
|
|
||||||
|
def test_get(self, create_state):
|
||||||
|
state = State(filename=self.FILENAME)
|
||||||
|
assert state.get(self.POOL_NAME) == self.CONTENT[self.POOL_NAME]
|
||||||
|
|
||||||
|
def test_get_missing_key(self, create_state):
|
||||||
|
state = State(filename=self.FILENAME)
|
||||||
|
assert state.get('UNKNOWN_POOL') == {}
|
Reference in a new issue