elite-engineering/tests/test_trade.py

55 lines
1.8 KiB
Python
Raw Normal View History

2022-01-20 16:04:54 +00:00
import fractions
import typing
2022-01-20 16:04:54 +00:00
import unittest
from elite_engineering import trade
class TradeCalculationTests(unittest.TestCase):
def format_ratio(self, ratio: typing.Optional[fractions.Fraction]) -> str:
if not ratio:
return "-"
2022-01-20 16:04:54 +00:00
return "{}{}".format(ratio.numerator, ratio.denominator)
2022-01-20 16:57:53 +00:00
def test_same_category_exchange(self) -> None:
2022-01-20 16:04:54 +00:00
expected = [
["1 → 1", "1 → 3", "1 → 9", "1 → 27", "1 → 81"],
["6 → 1", "1 → 1", "1 → 3", "1 → 9", "1 → 27"],
["36 → 1", "6 → 1", "1 → 1", "1 → 3", "1 → 9"],
["216 → 1", "36 → 1", "6 → 1", "1 → 1", "1 → 3"],
2022-01-20 16:57:53 +00:00
["-", "216 → 1", "36 → 1", "6 → 1", "1 → 1"],
2022-01-20 16:04:54 +00:00
]
actual = [
[
self.format_ratio(
trade.ratio(grade_in, grade_out, across_categories=False)
)
2022-01-22 05:21:09 +00:00
for grade_in in [1, 2, 3, 4, 5]
2022-01-20 16:04:54 +00:00
]
2022-01-22 05:21:09 +00:00
for grade_out in [1, 2, 3, 4, 5]
2022-01-20 16:04:54 +00:00
]
self.assertEqual(expected, actual)
2022-01-20 16:57:53 +00:00
def test_different_category_exchange(self) -> None:
2022-01-20 16:04:54 +00:00
expected = [
["6 → 1", "2 → 1", "2 → 3", "2 → 9", "2 → 27"],
["36 → 1", "6 → 1", "2 → 1", "2 → 3", "2 → 9"],
["216 → 1", "36 → 1", "6 → 1", "2 → 1", "2 → 3"],
2022-01-20 16:57:53 +00:00
["-", "216 → 1", "36 → 1", "6 → 1", "2 → 1"],
["-", "-", "216 → 1", "36 → 1", "6 → 1"],
2022-01-20 16:04:54 +00:00
]
2022-01-22 04:37:58 +00:00
actual = [
[
self.format_ratio(
trade.ratio(grade_in, grade_out, across_categories=True)
)
2022-01-22 05:21:09 +00:00
for grade_in in [1, 2, 3, 4, 5]
2022-01-20 16:04:54 +00:00
]
2022-01-22 05:21:09 +00:00
for grade_out in [1, 2, 3, 4, 5]
2022-01-20 16:04:54 +00:00
]
self.assertEqual(expected, actual)