GithubHelp home page GithubHelp logo

Error in tests about django-oscar-api HOT 3 CLOSED

django-oscar avatar django-oscar commented on May 23, 2024 1
Error in tests

from django-oscar-api.

Comments (3)

maerteijn avatar maerteijn commented on May 23, 2024 1

@gogobook Thanks for the clarification.
Note that you are reporting this against a development version of Oscar, not the official supported versions as stated in the docs

Now that's been said: It's actually not an issue of oscarapi. However, I created a pull request for Oscar to fix this: django-oscar/django-oscar#2682

I will close this issue when it's merged.

from django-oscar-api.

maerteijn avatar maerteijn commented on May 23, 2024

As you can see on travis , the tests do pass. Can you explain a bit more please. "testoffer.py and testbasket.py is an error." is a bit vague.

from django-oscar-api.

gogobook avatar gogobook commented on May 23, 2024

When I try to develop oscarapi with oscar(338cb7c), I get "NoneType" error by follow message

File ".../oscarapi/views/basket.py", line 78, in validate
    allowed, message = basket.is_quantity_allowed(quantity)
File ".../oscar/apps/basket/abstract_models.py", line155, in is_quantity_allowed
    max_allowed, basket_threshold = self.max_allowed_quantity()
TypeError: 'NoneType' object is not iterable

This is some source code of oscar(338cb7c) in basket/abstract_models.py:

    def max_allowed_quantity(self):
        """
        Returns maximum product quantity, that can be added to the basket
        with the respect to basket quantity threshold.
        """
        basket_threshold = settings.OSCAR_MAX_BASKET_QUANTITY_THRESHOLD
        if basket_threshold:
            total_basket_quantity = self.num_items
            max_allowed = basket_threshold - total_basket_quantity
            return max_allowed, basket_threshold

    def is_quantity_allowed(self, qty):
        """
        Test whether the passed quantity of items can be added to the basket
        """
        # We enforce a max threshold to prevent a DOS attack via the offers
        # system.
        max_allowed, basket_threshold = self.max_allowed_quantity()
        if max_allowed is not None and qty > max_allowed:
            return False, _(
                "Due to technical limitations we are not able "
                "to ship more than %(threshold)d items in one order.") \
                % {'threshold': basket_threshold}
        return True, None

if setup "settings.OSCAR_MAX_BASKET_QUANTITY_THRESHOLD = None" will get TypeError: 'NoneType' object is not iterable.

from django-oscar-api.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.