Added tests

This commit is contained in:
2021-03-07 14:58:01 +00:00
parent 5d4a4b61b6
commit cccc048a92
3 changed files with 42 additions and 2 deletions

View File

@@ -2,5 +2,6 @@
"python.pythonPath": "bin/python3",
"python.envFile": "${workspaceFolder}/.env",
"python.linting.pylintEnabled": true,
"python.linting.enabled": true
"python.linting.enabled": true,
"python.autoComplete.addBrackets": true
}

View File

@@ -73,7 +73,7 @@ def main(config, log):
if does_file_exist(config['message_sent_file']):
log.info(
f'Already had positive result, remove {config["message_sent_file"]} to allow script to run again')
return
raise StopIteration('Already run once')
json = get_json_from_url(config['api_url'])
@@ -81,6 +81,7 @@ def main(config, log):
if id['edp'] == config['item_id']:
if id['stockStatus'] == 'OutOfStock':
log.info("Item is out of stock")
return False
else:
log.info("Item is in stock")
send_sms(
@@ -88,6 +89,7 @@ def main(config, log):
# Prevents it being run again
create_file(config['message_sent_file'])
return True
if __name__ == '__main__':

37
test_scrape.py Normal file
View File

@@ -0,0 +1,37 @@
from unittest.mock import Mock, patch
import pytest
import scrape
import logging
@pytest.fixture(scope="module")
def log():
log = scrape.get_logger(logging.DEBUG)
yield log
@patch('scrape.does_file_exist')
def test_already_run(mock_does_file_exist, log):
mock_does_file_exist.return_value = True
assert scrape.does_file_exist(scrape.config['message_sent_file'])
with pytest.raises(StopIteration):
scrape.main(scrape.config, log)
@pytest.mark.parametrize("json, expected",
[({"Y1357": [{"edp": "40263442", "stockStatus": "OutOfStock"}]}, False),
({"Y1357": [{"edp": "40263442", "stockStatus": "LowStock"}]}, True)])
@patch('scrape.does_file_exist')
@patch('scrape.requests.get')
@patch('scrape.create_file')
@patch('scrape.send_sms')
def test_full_process(mock_send_sms, mock_create_file, mock_request_get, mock_does_file_exist, json, expected, log):
mock_does_file_exist.return_value = False
mock_response = Mock(**{'json.return_value': json})
mock_request_get.return_value = mock_response
assert scrape.main(scrape.config, log) == expected
if expected:
mock_send_sms.assert_called_once_with(scrape.config['msg_to'],
'The coat is in stock at ' + scrape.config['website_url'])
mock_create_file.assert_called_once()