symposion_app/registrasion/tests/test_enabling_condition.py

339 lines
11 KiB
Python
Raw Normal View History

2016-01-22 05:01:30 +00:00
import pytz
from django.core.exceptions import ValidationError
from registrasion import models as rego
from registrasion.controllers.category import CategoryController
from controller_helpers import TestingCartController
from registrasion.controllers.product import ProductController
2016-01-22 05:01:30 +00:00
from test_cart import RegistrationCartTestCase
UTC = pytz.timezone('UTC')
2016-01-22 06:02:07 +00:00
class FlagTestCases(RegistrationCartTestCase):
2016-01-22 05:01:30 +00:00
@classmethod
2016-04-11 07:56:11 +00:00
def add_product_flag(cls, mandatory=False):
2016-01-22 05:01:30 +00:00
''' Adds a product enabling condition: adding PROD_1 to a cart is
predicated on adding PROD_2 beforehand. '''
2016-04-11 07:56:11 +00:00
flag = rego.ProductFlag.objects.create(
2016-01-22 05:01:30 +00:00
description="Product condition",
mandatory=mandatory,
)
2016-04-11 07:56:11 +00:00
flag.save()
flag.products.add(cls.PROD_1)
flag.enabling_products.add(cls.PROD_2)
flag.save()
2016-01-22 05:01:30 +00:00
@classmethod
2016-04-11 07:56:11 +00:00
def add_product_flag_on_category(cls, mandatory=False):
2016-01-22 05:01:30 +00:00
''' Adds a product enabling condition that operates on a category:
adding an item from CAT_1 is predicated on adding PROD_3 beforehand '''
2016-04-11 07:56:11 +00:00
flag = rego.ProductFlag.objects.create(
2016-01-22 05:01:30 +00:00
description="Product condition",
mandatory=mandatory,
)
2016-04-11 07:56:11 +00:00
flag.save()
flag.categories.add(cls.CAT_1)
flag.enabling_products.add(cls.PROD_3)
flag.save()
2016-01-22 05:01:30 +00:00
2016-04-11 07:56:11 +00:00
def add_category_flag(cls, mandatory=False):
2016-01-22 05:01:30 +00:00
''' Adds a category enabling condition: adding PROD_1 to a cart is
predicated on adding an item from CAT_2 beforehand.'''
2016-04-11 07:56:11 +00:00
flag = rego.CategoryFlag.objects.create(
2016-01-22 05:01:30 +00:00
description="Category condition",
mandatory=mandatory,
enabling_category=cls.CAT_2,
)
2016-04-11 07:56:11 +00:00
flag.save()
flag.products.add(cls.PROD_1)
flag.save()
2016-01-22 05:01:30 +00:00
2016-04-11 07:56:11 +00:00
def test_product_flag_enables_product(self):
self.add_product_flag()
2016-01-22 05:01:30 +00:00
# Cannot buy PROD_1 without buying PROD_2
current_cart = TestingCartController.for_user(self.USER_1)
2016-01-22 05:01:30 +00:00
with self.assertRaises(ValidationError):
current_cart.add_to_cart(self.PROD_1, 1)
current_cart.add_to_cart(self.PROD_2, 1)
current_cart.add_to_cart(self.PROD_1, 1)
def test_product_enabled_by_product_in_previous_cart(self):
2016-04-11 07:56:11 +00:00
self.add_product_flag()
2016-01-22 05:01:30 +00:00
current_cart = TestingCartController.for_user(self.USER_1)
2016-01-22 05:01:30 +00:00
current_cart.add_to_cart(self.PROD_2, 1)
current_cart.next_cart()
2016-01-22 05:01:30 +00:00
# Create new cart and try to add PROD_1
current_cart = TestingCartController.for_user(self.USER_1)
2016-01-22 05:01:30 +00:00
current_cart.add_to_cart(self.PROD_1, 1)
2016-04-11 07:56:11 +00:00
def test_product_flag_enables_category(self):
self.add_product_flag_on_category()
2016-01-22 05:01:30 +00:00
# Cannot buy PROD_1 without buying item from CAT_2
current_cart = TestingCartController.for_user(self.USER_1)
2016-01-22 05:01:30 +00:00
with self.assertRaises(ValidationError):
current_cart.add_to_cart(self.PROD_1, 1)
current_cart.add_to_cart(self.PROD_3, 1)
current_cart.add_to_cart(self.PROD_1, 1)
2016-04-11 07:56:11 +00:00
def test_category_flag_enables_product(self):
self.add_category_flag()
2016-01-22 05:01:30 +00:00
# Cannot buy PROD_1 without buying PROD_2
current_cart = TestingCartController.for_user(self.USER_1)
2016-01-22 05:01:30 +00:00
with self.assertRaises(ValidationError):
current_cart.add_to_cart(self.PROD_1, 1)
# PROD_3 is in CAT_2
current_cart.add_to_cart(self.PROD_3, 1)
current_cart.add_to_cart(self.PROD_1, 1)
def test_product_enabled_by_category_in_previous_cart(self):
2016-04-11 07:56:11 +00:00
self.add_category_flag()
2016-01-22 05:01:30 +00:00
current_cart = TestingCartController.for_user(self.USER_1)
2016-01-22 05:01:30 +00:00
current_cart.add_to_cart(self.PROD_3, 1)
current_cart.next_cart()
2016-01-22 05:01:30 +00:00
# Create new cart and try to add PROD_1
current_cart = TestingCartController.for_user(self.USER_1)
2016-01-22 05:01:30 +00:00
current_cart.add_to_cart(self.PROD_1, 1)
def test_multiple_non_mandatory_conditions(self):
2016-04-11 07:56:11 +00:00
self.add_product_flag()
self.add_category_flag()
2016-01-22 05:01:30 +00:00
# User 1 is testing the product enabling condition
cart_1 = TestingCartController.for_user(self.USER_1)
2016-01-22 05:01:30 +00:00
# Cannot add PROD_1 until a condition is met
with self.assertRaises(ValidationError):
cart_1.add_to_cart(self.PROD_1, 1)
cart_1.add_to_cart(self.PROD_2, 1)
cart_1.add_to_cart(self.PROD_1, 1)
# User 2 is testing the category enabling condition
cart_2 = TestingCartController.for_user(self.USER_2)
2016-01-22 05:01:30 +00:00
# Cannot add PROD_1 until a condition is met
with self.assertRaises(ValidationError):
cart_2.add_to_cart(self.PROD_1, 1)
cart_2.add_to_cart(self.PROD_3, 1)
cart_2.add_to_cart(self.PROD_1, 1)
def test_multiple_mandatory_conditions(self):
2016-04-11 07:56:11 +00:00
self.add_product_flag(mandatory=True)
self.add_category_flag(mandatory=True)
2016-01-22 05:01:30 +00:00
cart_1 = TestingCartController.for_user(self.USER_1)
2016-01-22 05:01:30 +00:00
# Cannot add PROD_1 until both conditions are met
with self.assertRaises(ValidationError):
cart_1.add_to_cart(self.PROD_1, 1)
2016-01-22 06:02:07 +00:00
cart_1.add_to_cart(self.PROD_2, 1) # Meets the product condition
2016-01-22 05:01:30 +00:00
with self.assertRaises(ValidationError):
cart_1.add_to_cart(self.PROD_1, 1)
2016-01-22 06:02:07 +00:00
cart_1.add_to_cart(self.PROD_3, 1) # Meets the category condition
2016-01-22 05:01:30 +00:00
cart_1.add_to_cart(self.PROD_1, 1)
def test_mandatory_conditions_are_mandatory(self):
2016-04-11 07:56:11 +00:00
self.add_product_flag(mandatory=False)
self.add_category_flag(mandatory=True)
2016-01-22 05:01:30 +00:00
cart_1 = TestingCartController.for_user(self.USER_1)
2016-01-22 05:01:30 +00:00
# Cannot add PROD_1 until both conditions are met
with self.assertRaises(ValidationError):
cart_1.add_to_cart(self.PROD_1, 1)
2016-01-22 06:02:07 +00:00
cart_1.add_to_cart(self.PROD_2, 1) # Meets the product condition
2016-01-22 05:01:30 +00:00
with self.assertRaises(ValidationError):
cart_1.add_to_cart(self.PROD_1, 1)
2016-01-22 06:02:07 +00:00
cart_1.add_to_cart(self.PROD_3, 1) # Meets the category condition
2016-01-22 05:01:30 +00:00
cart_1.add_to_cart(self.PROD_1, 1)
def test_available_products_works_with_no_conditions_set(self):
prods = ProductController.available_products(
self.USER_1,
category=self.CAT_1,
)
self.assertTrue(self.PROD_1 in prods)
self.assertTrue(self.PROD_2 in prods)
prods = ProductController.available_products(
self.USER_1,
category=self.CAT_2,
)
self.assertTrue(self.PROD_3 in prods)
self.assertTrue(self.PROD_4 in prods)
prods = ProductController.available_products(
self.USER_1,
products=[self.PROD_1, self.PROD_2, self.PROD_3, self.PROD_4],
)
self.assertTrue(self.PROD_1 in prods)
self.assertTrue(self.PROD_2 in prods)
self.assertTrue(self.PROD_3 in prods)
self.assertTrue(self.PROD_4 in prods)
def test_available_products_on_category_works_when_condition_not_met(self):
2016-04-11 07:56:11 +00:00
self.add_product_flag(mandatory=False)
prods = ProductController.available_products(
self.USER_1,
category=self.CAT_1,
)
self.assertTrue(self.PROD_1 not in prods)
self.assertTrue(self.PROD_2 in prods)
def test_available_products_on_category_works_when_condition_is_met(self):
2016-04-11 07:56:11 +00:00
self.add_product_flag(mandatory=False)
cart_1 = TestingCartController.for_user(self.USER_1)
cart_1.add_to_cart(self.PROD_2, 1)
prods = ProductController.available_products(
self.USER_1,
category=self.CAT_1,
)
self.assertTrue(self.PROD_1 in prods)
self.assertTrue(self.PROD_2 in prods)
def test_available_products_on_products_works_when_condition_not_met(self):
2016-04-11 07:56:11 +00:00
self.add_product_flag(mandatory=False)
prods = ProductController.available_products(
self.USER_1,
products=[self.PROD_1, self.PROD_2],
)
self.assertTrue(self.PROD_1 not in prods)
self.assertTrue(self.PROD_2 in prods)
def test_available_products_on_products_works_when_condition_is_met(self):
2016-04-11 07:56:11 +00:00
self.add_product_flag(mandatory=False)
cart_1 = TestingCartController.for_user(self.USER_1)
cart_1.add_to_cart(self.PROD_2, 1)
prods = ProductController.available_products(
self.USER_1,
products=[self.PROD_1, self.PROD_2],
)
self.assertTrue(self.PROD_1 in prods)
self.assertTrue(self.PROD_2 in prods)
2016-04-11 07:56:11 +00:00
def test_category_flag_fails_if_cart_refunded(self):
self.add_category_flag(mandatory=False)
cart = TestingCartController.for_user(self.USER_1)
cart.add_to_cart(self.PROD_3, 1)
cart.next_cart()
cart_2 = TestingCartController.for_user(self.USER_1)
cart_2.add_to_cart(self.PROD_1, 1)
cart_2.set_quantity(self.PROD_1, 0)
cart.cart.released = True
cart.next_cart()
with self.assertRaises(ValidationError):
cart_2.set_quantity(self.PROD_1, 1)
2016-04-11 07:56:11 +00:00
def test_product_flag_fails_if_cart_refunded(self):
self.add_product_flag(mandatory=False)
cart = TestingCartController.for_user(self.USER_1)
cart.add_to_cart(self.PROD_2, 1)
cart.next_cart()
cart_2 = TestingCartController.for_user(self.USER_1)
cart_2.add_to_cart(self.PROD_1, 1)
cart_2.set_quantity(self.PROD_1, 0)
cart.cart.released = True
cart.next_cart()
with self.assertRaises(ValidationError):
cart_2.set_quantity(self.PROD_1, 1)
def test_available_categories(self):
2016-04-11 07:56:11 +00:00
self.add_product_flag_on_category(mandatory=False)
cart_1 = TestingCartController.for_user(self.USER_1)
cats = CategoryController.available_categories(
self.USER_1,
)
self.assertFalse(self.CAT_1 in cats)
self.assertTrue(self.CAT_2 in cats)
cart_1.add_to_cart(self.PROD_3, 1)
cats = CategoryController.available_categories(
self.USER_1,
)
self.assertTrue(self.CAT_1 in cats)
self.assertTrue(self.CAT_2 in cats)
2016-04-11 07:56:11 +00:00
def test_validate_cart_when_flags_become_unmet(self):
self.add_product_flag(mandatory=False)
cart = TestingCartController.for_user(self.USER_1)
cart.add_to_cart(self.PROD_2, 1)
cart.add_to_cart(self.PROD_1, 1)
# Should pass
cart.validate_cart()
cart.set_quantity(self.PROD_2, 0)
# Should fail
with self.assertRaises(ValidationError):
cart.validate_cart()
def test_fix_simple_errors_resolves_unavailable_products(self):
2016-04-11 07:56:11 +00:00
self.test_validate_cart_when_flags_become_unmet()
cart = TestingCartController.for_user(self.USER_1)
# Should just remove all of the unavailable products
cart.fix_simple_errors()
# Should now succeed
cart.validate_cart()
# Should keep PROD_2 in the cart
items = rego.ProductItem.objects.filter(cart=cart.cart)
self.assertFalse([i for i in items if i.product == self.PROD_1])
def test_fix_simple_errors_does_not_remove_limited_items(self):
cart = TestingCartController.for_user(self.USER_1)
cart.add_to_cart(self.PROD_2, 1)
cart.add_to_cart(self.PROD_1, 10)
# Should just remove all of the unavailable products
cart.fix_simple_errors()
# Should now succeed
cart.validate_cart()
# Should keep PROD_2 in the cart
# and also PROD_1, which is now exhausted for user.
items = rego.ProductItem.objects.filter(cart=cart.cart)
self.assertTrue([i for i in items if i.product == self.PROD_1])