def test_formatted_decimal_field(): """ Test that FormattedDecimalField doesn't return value in scientific notation. """ class TestModelForm(ModelForm): class Meta: model = Product fields = ["width"] values = [ "0E-9", "0E-30", "1E-9", "123E-10", "-123E-10", "1.12345666666666E20" ] for value in values: product = Product(width=Decimal(value)) form = TestModelForm(instance=product) rendered_form = force_text(form) rendered_value = re.search('value="(.*?)"', rendered_form).group(1) rendered_step = re.search('step="(.*?)"', rendered_form).group(1) assert rendered_value and "E" not in rendered_value assert rendered_step and "E" not in rendered_step # Extremely large exponents should raise an exception so as not to # produce excessively large files large_value = "1.23E-10000" product = Product(width=Decimal(large_value)) with pytest.raises(ValueError): form = TestModelForm(instance=product)
def get_object(self, queryset=None): if not self.kwargs.get(self.pk_url_kwarg): instance = self.model() instance.shop = self.request.shop instance.product = Product() return instance return super(ProductEditView, self).get_object(queryset)
def test_formatted_decimal_field_default(): class TestModelForm(ModelForm): class Meta: model = Product fields = ["width"] rendered_form = force_text(TestModelForm(instance=Product())) rendered_value = re.search('value="(.*?)"', rendered_form).group(1) assert rendered_value == "0"
def test_product_caching_object_type_validation(): with pytest.raises(TypeError): pco = ProductCachingObject() pco.product_id = "yeah" with pytest.raises(TypeError): pco = ProductCachingObject() pco.product = "yeahhh" with pytest.raises(ValueError): pco = ProductCachingObject() pco.product = Product()
def test_convert_taxness_without_conversion(taxes, price_cls): request = get_request() item = Product() priceful = _get_price_info(price_cls) calcs_done_before = DummyTaxModule.calculations_done result = convert_taxness(request, item, priceful, with_taxes=taxes) calcs_done_after = DummyTaxModule.calculations_done assert result == priceful assert result.price == price_cls(480, 'USD') assert result.base_price == price_cls(660, 'USD') assert result.quantity == 2 assert calcs_done_after == calcs_done_before
def test_convert_taxness_taxless_to_taxful(): request = get_request() tax_class = TaxClass() item = Product(tax_class=tax_class) priceful = _get_price_info(TaxlessPrice) calcs_done_before = DummyTaxModule.calculations_done result = convert_taxness(request, item, priceful, with_taxes=True) calcs_done_after = DummyTaxModule.calculations_done assert result != priceful assert result.price == TaxfulPrice(576, 'USD') assert result.base_price == TaxfulPrice(792, 'USD') assert result.quantity == 2 assert result.tax_amount == Money(96, 'USD') assert result.taxful_price == result.price assert result.taxless_price == priceful.price assert calcs_done_after == calcs_done_before + 2
def _get_order_and_order_line(request): order = Order( shop=request.shop, currency=request.shop.currency, prices_include_tax=request.shop.prices_include_tax, ) order.taxful_total_price = TaxfulPrice("100", request.shop.currency) order.taxless_total_price = TaxlessPrice("50", request.shop.currency) pi = _get_price_info(request.shop, Product(sku='6.0745'), quantity=2) return (order, OrderLine( order=order, base_unit_price=pi.base_unit_price, discount_amount=pi.discount_amount, quantity=pi.quantity, ))
def test_modelform_persistence(): with translation.override("en"): test_product = Product(barcode="666", stock_behavior=StockBehavior.STOCKED) test_product.set_current_language("en") test_product.name = "foo" frm = MultiProductForm(languages=["en"], instance=test_product, default_language="en") assert frm["barcode"].value() == test_product.barcode stock_behavior_field = Product._meta.get_field_by_name( "stock_behavior")[0] assert stock_behavior_field.to_python( frm["stock_behavior"].value()) is test_product.stock_behavior assert 'value="1" selected="selected"' in six.text_type( frm["stock_behavior"].as_widget()) assert frm.initial["name"] == test_product.name
def test_pricing_module_is_active(): """ Make sure that our custom pricing module is active. """ shop = Shop(currency='USD', prices_include_tax=False) customer = AnonymousContact() product = Product(sku='6.0745') pricing_mod = get_pricing_module() pricing_ctx = pricing_mod.get_context_from_data(shop, customer) pi = product.get_price_info(pricing_ctx, quantity=2) price = shop.create_price assert pi.price == price('12.149') assert pi.base_price == price('48.596') assert pi.quantity == 2 assert pi.discounted_unit_price == price('6.0745') assert pi.base_unit_price == price('24.298') assert pi.discount_rate == Decimal('0.75')
def create_product(sku, shop=None, supplier=None, default_price=None, **attrs): if default_price is not None: default_price = shop.create_price(default_price) if 'fractional' in attrs: attrs.pop('fractional') get_sales_unit = get_fractional_sales_unit else: get_sales_unit = get_default_sales_unit product_attrs = dict( type=get_default_product_type(), tax_class=get_default_tax_class(), sku=sku, name=sku.title(), width=100, height=100, depth=100, net_weight=100, gross_weight=100, sales_unit=get_sales_unit(), stock_behavior=StockBehavior.UNSTOCKED ) product_attrs.update(attrs) product = Product(**product_attrs) product.full_clean() product.save() if shop: sp = ShopProduct.objects.create( product=product, shop=shop, default_price=default_price, visibility=ShopProductVisibility.ALWAYS_VISIBLE ) if supplier: sp.suppliers.add(supplier) sp.save() return product
def _get_price_info(shop, product=None, quantity=2): if not product: product = Product(sku='6.0745') # SKU of product defines the price :) price = shop.create_price(product.sku) return PriceInfo(quantity * price, quantity * 4 * price, quantity)
def _get_basket_line(request): basket = BaseBasket(request) return _create_line(basket, Product(sku='6.0745'))
def _get_source_line(request): source = OrderSource(request.shop) return _create_line(source, Product(sku='6.0745'))