2020-06-11 19:58:15 +02:00
|
|
|
# strategy_best2.py
|
|
|
|
# Strategy pattern -- function-based implementation
|
|
|
|
# selecting best promotion from current module globals
|
|
|
|
|
|
|
|
"""
|
2021-08-07 05:44:01 +02:00
|
|
|
>>> from decimal import Decimal
|
|
|
|
>>> from strategy import Customer, LineItem, Order
|
2020-06-11 19:58:15 +02:00
|
|
|
>>> joe = Customer('John Doe', 0)
|
|
|
|
>>> ann = Customer('Ann Smith', 1100)
|
2021-08-07 05:44:01 +02:00
|
|
|
>>> cart = [LineItem('banana', 4, Decimal('.5')),
|
|
|
|
... LineItem('apple', 10, Decimal('1.5')),
|
|
|
|
... LineItem('watermelon', 5, Decimal(5))]
|
2020-06-11 19:58:15 +02:00
|
|
|
>>> Order(joe, cart, fidelity_promo)
|
|
|
|
<Order total: 42.00 due: 42.00>
|
|
|
|
>>> Order(ann, cart, fidelity_promo)
|
|
|
|
<Order total: 42.00 due: 39.90>
|
2021-08-07 05:44:01 +02:00
|
|
|
>>> banana_cart = [LineItem('banana', 30, Decimal('.5')),
|
|
|
|
... LineItem('apple', 10, Decimal('1.5'))]
|
2020-06-11 19:58:15 +02:00
|
|
|
>>> Order(joe, banana_cart, bulk_item_promo)
|
|
|
|
<Order total: 30.00 due: 28.50>
|
2021-08-07 05:44:01 +02:00
|
|
|
>>> long_cart = [LineItem(str(item_code), 1, Decimal(1))
|
2020-06-11 19:58:15 +02:00
|
|
|
... for item_code in range(10)]
|
2021-08-07 05:44:01 +02:00
|
|
|
>>> Order(joe, long_cart, large_order_promo)
|
2020-06-11 19:58:15 +02:00
|
|
|
<Order total: 10.00 due: 9.30>
|
|
|
|
>>> Order(joe, cart, large_order_promo)
|
|
|
|
<Order total: 42.00 due: 42.00>
|
|
|
|
|
|
|
|
# tag::STRATEGY_BEST_TESTS[]
|
|
|
|
|
2021-08-07 05:44:01 +02:00
|
|
|
>>> Order(joe, long_cart, best_promo)
|
2020-06-11 19:58:15 +02:00
|
|
|
<Order total: 10.00 due: 9.30>
|
|
|
|
>>> Order(joe, banana_cart, best_promo)
|
|
|
|
<Order total: 30.00 due: 28.50>
|
|
|
|
>>> Order(ann, cart, best_promo)
|
|
|
|
<Order total: 42.00 due: 39.90>
|
|
|
|
|
|
|
|
# end::STRATEGY_BEST_TESTS[]
|
|
|
|
"""
|
|
|
|
|
|
|
|
# tag::STRATEGY_BEST2[]
|
2021-08-07 05:44:01 +02:00
|
|
|
from decimal import Decimal
|
|
|
|
from strategy import Order
|
|
|
|
from strategy import (
|
|
|
|
fidelity_promo, bulk_item_promo, large_order_promo # <1>
|
|
|
|
)
|
2020-06-11 19:58:15 +02:00
|
|
|
|
2021-08-07 05:44:01 +02:00
|
|
|
promos = [promo for name, promo in globals().items() # <2>
|
|
|
|
if name.endswith('_promo') and # <3>
|
|
|
|
name != 'best_promo' # <4>
|
|
|
|
]
|
2020-06-11 19:58:15 +02:00
|
|
|
|
|
|
|
|
2021-08-07 05:44:01 +02:00
|
|
|
def best_promo(order: Order) -> Decimal: # <5>
|
|
|
|
"""Compute the best discount available"""
|
|
|
|
return max(promo(order) for promo in promos)
|
2020-06-11 19:58:15 +02:00
|
|
|
|
|
|
|
# end::STRATEGY_BEST2[]
|