mirror of
https://github.com/Crocmagnon/checkout.git
synced 2024-11-22 08:08:04 +01:00
Create product categories in tests
This commit is contained in:
parent
61edce6e69
commit
55b6cb9cb8
2 changed files with 15 additions and 1 deletions
|
@ -6,7 +6,7 @@ from django.contrib.auth.hashers import make_password
|
||||||
from django.contrib.auth.models import Group, Permission
|
from django.contrib.auth.models import Group, Permission
|
||||||
|
|
||||||
from common.models import User
|
from common.models import User
|
||||||
from purchase.models import Basket, BasketItem, PaymentMethod, Product
|
from purchase.models import Basket, BasketItem, PaymentMethod, Product, ProductCategory
|
||||||
|
|
||||||
USER_PASSWORD = "test_password"
|
USER_PASSWORD = "test_password"
|
||||||
|
|
||||||
|
@ -26,12 +26,21 @@ class CashierFactory(factory.django.DjangoModelFactory):
|
||||||
self.groups.add(CashierGroupFactory())
|
self.groups.add(CashierGroupFactory())
|
||||||
|
|
||||||
|
|
||||||
|
class ProductCategoryFactory(factory.django.DjangoModelFactory):
|
||||||
|
class Meta:
|
||||||
|
model = ProductCategory
|
||||||
|
|
||||||
|
name = factory.Faker("text", max_nb_chars=30)
|
||||||
|
color_hue = factory.LazyFunction(partial(random.randint, 0, 360))
|
||||||
|
|
||||||
|
|
||||||
class ProductFactory(factory.django.DjangoModelFactory):
|
class ProductFactory(factory.django.DjangoModelFactory):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Product
|
model = Product
|
||||||
|
|
||||||
name = factory.Faker("text", max_nb_chars=80)
|
name = factory.Faker("text", max_nb_chars=80)
|
||||||
unit_price_cents = factory.LazyFunction(partial(random.randint, 80, 650))
|
unit_price_cents = factory.LazyFunction(partial(random.randint, 80, 650))
|
||||||
|
category = factory.Iterator(ProductCategory.objects.all())
|
||||||
|
|
||||||
|
|
||||||
class PaymentMethodFactory(factory.django.DjangoModelFactory):
|
class PaymentMethodFactory(factory.django.DjangoModelFactory):
|
||||||
|
|
|
@ -16,6 +16,7 @@ from purchase.tests.factories import (
|
||||||
BasketWithItemsFactory,
|
BasketWithItemsFactory,
|
||||||
CashierFactory,
|
CashierFactory,
|
||||||
PaymentMethodFactory,
|
PaymentMethodFactory,
|
||||||
|
ProductCategoryFactory,
|
||||||
ProductFactory,
|
ProductFactory,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -30,6 +31,8 @@ def test_cashier_create_and_update_basket( # noqa: PLR0915
|
||||||
|
|
||||||
# Setup data
|
# Setup data
|
||||||
cashier = CashierFactory()
|
cashier = CashierFactory()
|
||||||
|
ProductCategoryFactory()
|
||||||
|
ProductCategoryFactory()
|
||||||
products = [
|
products = [
|
||||||
ProductFactory(),
|
ProductFactory(),
|
||||||
ProductFactory(),
|
ProductFactory(),
|
||||||
|
@ -257,6 +260,8 @@ def test_baskets_list(live_server: LiveServer, selenium: WebDriver):
|
||||||
|
|
||||||
# Setup test data
|
# Setup test data
|
||||||
cashier = CashierFactory()
|
cashier = CashierFactory()
|
||||||
|
ProductCategoryFactory()
|
||||||
|
ProductCategoryFactory()
|
||||||
_ = [
|
_ = [
|
||||||
ProductFactory(),
|
ProductFactory(),
|
||||||
ProductFactory(),
|
ProductFactory(),
|
||||||
|
|
Loading…
Reference in a new issue