2020-01-17 16:18:47 +01:00
|
|
|
import datetime
|
|
|
|
import unittest
|
|
|
|
|
2020-02-22 15:25:51 +01:00
|
|
|
from ofx_processor.revolut_processor.revolut_processor import (
|
2020-02-22 14:53:52 +01:00
|
|
|
_amount_str_to_float,
|
2020-02-22 15:25:51 +01:00
|
|
|
RevolutLine,
|
2020-01-17 16:18:47 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class RevolutProcessorTestCase(unittest.TestCase):
|
|
|
|
def test_process_amount_with_one_decimal_place(self):
|
|
|
|
amount = "3,4"
|
|
|
|
expected = 3.4
|
2020-02-22 14:53:52 +01:00
|
|
|
self.assertEqual(_amount_str_to_float(amount), expected)
|
2020-01-17 16:18:47 +01:00
|
|
|
|
|
|
|
def test_process_amount_with_two_decimal_places(self):
|
|
|
|
amount = "3,41"
|
|
|
|
expected = 3.41
|
2020-02-22 14:53:52 +01:00
|
|
|
self.assertEqual(_amount_str_to_float(amount), expected)
|
2020-01-17 16:18:47 +01:00
|
|
|
|
|
|
|
def test_process_amount_with_empty_string(self):
|
|
|
|
amount = ""
|
|
|
|
expected = ""
|
2020-02-22 14:53:52 +01:00
|
|
|
self.assertEqual(_amount_str_to_float(amount), expected)
|
2020-01-17 16:18:47 +01:00
|
|
|
|
|
|
|
def test_process_memo_with_category_and_rate(self):
|
|
|
|
line = {"Category": "category name", "Exchange Rate": "exchange rate"}
|
|
|
|
expected = "category name - exchange rate"
|
2020-02-22 15:25:51 +01:00
|
|
|
self.assertEqual(RevolutLine(line).get_memo(), expected)
|
2020-01-17 16:18:47 +01:00
|
|
|
|
|
|
|
def test_process_memo_with_only_category(self):
|
|
|
|
line = {"Category": "category name", "Exchange Rate": ""}
|
|
|
|
expected = "category name"
|
2020-02-22 15:25:51 +01:00
|
|
|
self.assertEqual(RevolutLine(line).get_memo(), expected)
|
2020-01-17 16:18:47 +01:00
|
|
|
|
|
|
|
def test_process_memo_with_only_rate(self):
|
|
|
|
line = {"Category": "", "Exchange Rate": "exchange rate"}
|
|
|
|
expected = "exchange rate"
|
2020-02-22 15:25:51 +01:00
|
|
|
self.assertEqual(RevolutLine(line).get_memo(), expected)
|
2020-01-17 16:18:47 +01:00
|
|
|
|
|
|
|
def test_process_memo_with_missing_keys(self):
|
|
|
|
line = {"Category": "category name"}
|
|
|
|
expected = "category name"
|
2020-02-22 15:25:51 +01:00
|
|
|
self.assertEqual(RevolutLine(line).get_memo(), expected)
|
2020-01-17 16:18:47 +01:00
|
|
|
|
|
|
|
def test_process_date(self):
|
|
|
|
line = {"Completed Date": "January 16"}
|
|
|
|
current_year = datetime.date.today().year
|
|
|
|
expected = f"{current_year}-01-16"
|
2020-02-22 15:25:51 +01:00
|
|
|
self.assertEqual(RevolutLine(line).get_date(), expected)
|
2020-01-17 16:18:47 +01:00
|
|
|
|
|
|
|
def test_process_date_other_year(self):
|
|
|
|
line = {"Completed Date": "January 16 2019"}
|
|
|
|
expected = f"2019-01-16"
|
2020-02-22 15:25:51 +01:00
|
|
|
self.assertEqual(RevolutLine(line).get_date(), expected)
|
2020-01-17 16:18:47 +01:00
|
|
|
|
|
|
|
def test_process_inflow(self):
|
|
|
|
line = {"Paid In (EUR)": "3,42"}
|
|
|
|
expected = 3.42
|
2020-02-22 15:25:51 +01:00
|
|
|
self.assertEqual(RevolutLine(line)._process_inflow(), expected)
|
2020-01-17 16:18:47 +01:00
|
|
|
|
|
|
|
def test_process_outflow(self):
|
|
|
|
line = {"Paid Out (EUR)": "8,42"}
|
|
|
|
expected = 8.42
|
2020-02-22 15:25:51 +01:00
|
|
|
self.assertEqual(RevolutLine(line)._process_outflow(), expected)
|
2020-01-17 16:18:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|