ofx-processor/tests/test_revolut_processor.py

90 lines
3 KiB
Python
Raw Normal View History

2020-01-17 16:18:47 +01:00
import datetime
2020-02-26 19:59:31 +01:00
import json
2020-01-17 16:18:47 +01:00
import unittest
from ofx_processor.processors.revolut import (
_amount_str_to_float,
RevolutLine,
2020-02-26 19:59:31 +01:00
RevolutProcessor,
2020-01-17 16:18:47 +01:00
)
class RevolutProcessorTestCase(unittest.TestCase):
2020-02-26 18:32:31 +01:00
def test_convert_amount_with_one_decimal_place(self):
2020-01-17 16:18:47 +01:00
amount = "3,4"
expected = 3.4
self.assertEqual(_amount_str_to_float(amount), expected)
2020-01-17 16:18:47 +01:00
2020-02-26 18:32:31 +01:00
def test_convert_amount_with_two_decimal_places(self):
2020-01-17 16:18:47 +01:00
amount = "3,41"
expected = 3.41
self.assertEqual(_amount_str_to_float(amount), expected)
2020-01-17 16:18:47 +01:00
2020-02-26 18:32:31 +01:00
def test_convert_amount_with_empty_string(self):
2020-01-17 16:18:47 +01:00
amount = ""
expected = ""
self.assertEqual(_amount_str_to_float(amount), expected)
2020-01-17 16:18:47 +01:00
2020-02-26 18:32:31 +01:00
def test_get_memo_with_category_and_rate(self):
2020-01-17 16:18:47 +01:00
line = {"Category": "category name", "Exchange Rate": "exchange rate"}
expected = "category name - exchange rate"
self.assertEqual(RevolutLine(line).get_memo(), expected)
2020-01-17 16:18:47 +01:00
2020-02-26 18:32:31 +01:00
def test_get_memo_with_only_category(self):
2020-01-17 16:18:47 +01:00
line = {"Category": "category name", "Exchange Rate": ""}
expected = "category name"
self.assertEqual(RevolutLine(line).get_memo(), expected)
2020-01-17 16:18:47 +01:00
2020-02-26 18:32:31 +01:00
def test_get_memo_with_only_rate(self):
2020-01-17 16:18:47 +01:00
line = {"Category": "", "Exchange Rate": "exchange rate"}
expected = "exchange rate"
self.assertEqual(RevolutLine(line).get_memo(), expected)
2020-01-17 16:18:47 +01:00
2020-02-26 18:32:31 +01:00
def test_get_memo_with_missing_keys(self):
2020-01-17 16:18:47 +01:00
line = {"Category": "category name"}
expected = "category name"
self.assertEqual(RevolutLine(line).get_memo(), expected)
2020-01-17 16:18:47 +01:00
2020-02-26 18:32:31 +01:00
def test_get_date(self):
2020-01-17 16:18:47 +01:00
line = {"Completed Date": "January 16"}
current_year = datetime.date.today().year
expected = f"{current_year}-01-16"
self.assertEqual(RevolutLine(line).get_date(), expected)
2020-01-17 16:18:47 +01:00
2020-02-26 18:32:31 +01:00
def test_get_date_other_year(self):
2020-01-17 16:18:47 +01:00
line = {"Completed Date": "January 16 2019"}
expected = f"2019-01-16"
self.assertEqual(RevolutLine(line).get_date(), expected)
2020-01-17 16:18:47 +01:00
2020-02-26 18:32:31 +01:00
def test_get_amount_inflow(self):
2020-01-17 16:18:47 +01:00
line = {"Paid In (EUR)": "3,42"}
2020-02-26 18:32:31 +01:00
expected = 3420
self.assertEqual(RevolutLine(line).get_amount(), expected)
2020-01-17 16:18:47 +01:00
2020-02-26 18:32:31 +01:00
def test_get_amount_outflow(self):
2020-01-17 16:18:47 +01:00
line = {"Paid Out (EUR)": "8,42"}
2020-02-26 18:32:31 +01:00
expected = -8420
self.assertEqual(RevolutLine(line).get_amount(), expected)
def test_get_payee(self):
line = {"Reference": "Hello world"}
expected = line["Reference"]
self.assertEqual(RevolutLine(line).get_payee(), expected)
2020-01-17 16:18:47 +01:00
2020-02-26 19:59:31 +01:00
class BpvfProcessorTestCase(unittest.TestCase):
def test_file_not_found(self):
with self.assertRaises(SystemExit):
RevolutProcessor("notfound.csv").get_transactions()
def test_file(self):
transactions = RevolutProcessor("tests/samples/revolut.csv").get_transactions()
with open("tests/samples/revolut_expected.json") as f:
expected_transactions = json.load(f)
self.assertListEqual(transactions, expected_transactions)
2020-01-17 16:18:47 +01:00
if __name__ == "__main__":
2020-02-26 18:56:49 +01:00
unittest.main() # pragma: nocover