Skip to content

Commit

Permalink
Merge pull request #71 from un1t/feature/cherrypick-4.0.1
Browse files Browse the repository at this point in the history
4.0.1
  • Loading branch information
vinnyrose authored Jun 6, 2020
2 parents 4560cc0 + 5a719f9 commit c249ff5
Show file tree
Hide file tree
Showing 10 changed files with 163 additions and 71 deletions.
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,19 @@ matrix:
env: TOXENV=py36-django22
- python: "3.7"
env: TOXENV=py37-django22
- python: "3.8"
env: TOXENV=py38-django22
- python: "pypy3"
env: TOXENV=pypy3-django22

- python: "3.6"
env: TOXENV=py36-django30
- python: "3.7"
env: TOXENV=py37-django30
- python: "3.8"
env: TOXENV=py38-django30
- python: "pypy3"
env: TOXENV=pypy3-django30
install: pip install tox-travis
script: tox # setting TOXENV is equivalent to calling `tox -e [ENV]`
notifications:
Expand Down
27 changes: 15 additions & 12 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
django-cleanup is free software under terms of the MIT License.
MIT License

Copyright (C) 2012 by Ilya Shalyapin, [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
97 changes: 72 additions & 25 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Django Cleanup
**************
|Version| |Status| |License|

Features
========
The django-cleanup app automatically deletes files for :code:`FileField`, :code:`ImageField` and
Expand All @@ -7,7 +11,7 @@ is set as the :code:`FileField`'s default value will not be deleted.

Compatibility
-------------
- Django 1.11, 2.1, 2.2 (`See Django Supported Versions <https://www.djangoproject.com/download/#supported-versions>`_)
- Django 1.11, 2.1, 2.2, 3.0 (`See Django Supported Versions <https://www.djangoproject.com/download/#supported-versions>`_)
- Python 2.7 and 3.4+
- Compatible with `sorl-thumbnail <https://github.com/jazzband/sorl-thumbnail>`_
- Compatible with `easy-thumbnail <https://github.com/SmileyChris/easy-thumbnails>`_
Expand All @@ -22,12 +26,12 @@ the model instance. If a condition is detected that should result in a file dele
delete the file is setup and inserted into the commit phase of the current transaction.

**Warning! If you are using a database that does not support transactions you may lose files if a
transaction will rollback at the right instance. Though this outcome is mitigated by our use of
post_save and post_delete signals, this outcome will still occur if there are errors in signals that
are handled after our signals are handled. In this case, the old file will be lost and the new file
transaction will rollback at the right instance. This outcome is mitigated by our use of
post_save and post_delete signals, and by following the recommended configuration below. This
outcome will still occur if there are signals registered after app initialization and there are
exceptions when those signals are handled. In this case, the old file will be lost and the new file
will not be referenced in a model, though the new file will likely still exist on disk. If you are
concerned about this behavior you will need another solution for old file deletion in your
project.**
concerned about this behavior you will need another solution for old file deletion in your project.**

Installation
============
Expand All @@ -38,8 +42,9 @@ Installation

Configuration
=============
Add django_cleanup to settings.py
::
Add ``django_cleanup`` to the bottom of ``INSTALLED_APPS`` in ``settings.py``

.. code-block:: py
INSTALLED_APPS = (
...,
Expand All @@ -48,6 +53,30 @@ Add django_cleanup to settings.py
That is all, no other configuration is necessary.

Note: Order of ``INSTALLED_APPS`` is important. To ensure that exceptions inside other apps' signal
handlers do not affect the integrity of file deletions within transactions, ``django_cleanup``
should be placed last in ``INSTALLED_APPS``.

Troubleshooting
===============
If you notice that ``django-cleanup`` is not removing files when expected, check that your models
are being properly
`loaded <https://docs.djangoproject.com/en/stable/ref/applications/#how-applications-are-loaded>`_:

You must define or import all models in your application's models.py or models/__init__.py.
Otherwise, the application registry may not be fully populated at this point, which could cause
the ORM to malfunction.

If your models are not loaded, ``django-cleanup`` will not be able to discover their
``FileField``'s.

You can check if your ``Model`` is loaded by using

.. code-block:: py
from django.apps import apps
apps.get_models()
Advanced
========
This section contains additional functionality that can be used to interact with django-cleanup for
Expand All @@ -62,7 +91,8 @@ can be imported from :code:`django_cleanup.signals`:
- :code:`cleanup_post_delete`: just after a file is deleted. Passes a :code:`file` keyword argument.

Signals example for sorl.thumbnail:
::

.. code-block:: py
from django_cleanup.signals import cleanup_pre_delete
from sorl.thumbnail import delete
Expand All @@ -76,7 +106,8 @@ Refresh the cache
-----------------
There have been rare cases where the cache would need to be refreshed. To do so the
:code:`django_cleanup.cleanup.refresh` method can be used:
::

.. code-block:: py
from django_cleanup import cleanup
Expand All @@ -85,7 +116,8 @@ There have been rare cases where the cache would need to be refreshed. To do so
Ignore cleanup for a specific model
-----------------------------------
Ignore a model and do not perform cleanup when the model is deleted or its files change.
::

.. code-block:: py
from django_cleanup import cleanup
Expand All @@ -96,7 +128,7 @@ Ignore a model and do not perform cleanup when the model is deleted or its files
How to run tests
================
Install, setup and use pyenv_ to install all the required versions of cPython
(see the `tox.ini <./tox.ini>`_).
(see the `tox.ini <https://github.com/un1t/django-cleanup/blob/release/4.0/tox.ini>`_).

Setup pyenv_ to have all versions of python activated within your local django-cleanup repository.
Ensuring that the python 2.7 that was installed is first priority.
Expand All @@ -111,33 +143,48 @@ This app requires the use of django.test.TransactionTestCase_ when writing tests
For details on why this is required see `here
<https://docs.djangoproject.com/en/2.1/topics/db/transactions/#use-in-tests>`_:

Djangos :code:`TestCase` class wraps each test in a transaction and rolls back that transaction
Django's :code:`TestCase` class wraps each test in a transaction and rolls back that transaction
after each test, in order to provide test isolation. This means that no transaction is ever
actually committed, thus your :code:`on_commit()` callbacks will never be run. If you need to
test the results of an :code:`on_commit()` callback, use a :code:`TransactionTestCase` instead.

License
=======
django-cleanup is free software under terms of the MIT License.
django-cleanup is free software under terms of the:

MIT License

Copyright (C) 2012 by Ilya Shalyapin, [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


.. _django.test.TransactionTestCase: https://docs.djangoproject.com/en/2.1/topics/testing/tools/#django.test.TransactionTestCase
.. _pyenv: https://github.com/pyenv/pyenv
.. _tox: https://tox.readthedocs.io/en/latest/

.. |Version| image:: https://img.shields.io/pypi/v/django-cleanup.svg
:target: https://pypi.python.org/pypi/django-cleanup/
:alt: PyPI Package
.. |Status| image:: https://travis-ci.org/un1t/django-cleanup.svg?branch=release/4.0
:target: https://travis-ci.org/un1t/django-cleanup
:alt: Build Status
.. |License| image:: https://img.shields.io/badge/license-MIT-maroon
:target: https://github.com/un1t/django-cleanup/blob/release/4.0/LICENSE
:alt: MIT License
3 changes: 2 additions & 1 deletion django_cleanup/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
'''
from __future__ import unicode_literals

__version__ = '4.0.0'

__version__ = '4.0.1'
default_app_config = 'django_cleanup.apps.CleanupConfig'
2 changes: 2 additions & 0 deletions django_cleanup/testapp/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from .app import *


try:
from .integration import *
except ImportError as e:
Expand Down
7 changes: 7 additions & 0 deletions django_cleanup/testapp/models/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,10 @@ class ProductUnmanaged(ProductAbstract):
class Meta:
managed = False
db_table = 'testapp_product'

class RootProduct(models.Model):
pass

class BranchProduct(models.Model):
root = models.ForeignKey(RootProduct, on_delete=models.CASCADE)
image = models.FileField(upload_to='testapp', blank=True, null=True)
48 changes: 30 additions & 18 deletions django_cleanup/testapp/test_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
from django_cleanup import cache, handlers

from . import storage
from .models.app import Product, ProductIgnore, ProductProxy, ProductUnmanaged
from .testing_helpers import get_using, pic1, random_pic
from .models.app import (
BranchProduct, Product, ProductIgnore, ProductProxy, ProductUnmanaged, RootProduct)
from .testing_helpers import get_random_pic_name, get_using, pic1


PY3 = sys.version_info[0] == 3
Expand Down Expand Up @@ -65,7 +66,7 @@ def test_refresh_from_db_without_refresh(pic1):
assert os.path.exists(pic1['path'])
product.refresh_from_db()
assert id(product.image.instance) == id(product)
product.image = random_pic()
product.image = get_random_pic_name()
with transaction.atomic(get_using(product)):
product.save()
assert not os.path.exists(pic1['path'])
Expand All @@ -75,7 +76,7 @@ def test_refresh_from_db_without_refresh(pic1):
def test_cache_gone(pic1):
product = Product.objects.create(image=pic1['filename'])
assert os.path.exists(pic1['path'])
product.image = random_pic()
product.image = get_random_pic_name()
cache.remove_instance_cache(product)
with transaction.atomic(get_using(product)):
product.save()
Expand All @@ -86,7 +87,7 @@ def test_cache_gone(pic1):
def test_storage_gone(pic1):
product = Product.objects.create(image=pic1['filename'])
assert os.path.exists(pic1['path'])
product.image = random_pic()
product.image = get_random_pic_name()
product = pickle.loads(pickle.dumps(product))
assert hasattr(product.image, 'storage')
with transaction.atomic(get_using(product)):
Expand All @@ -98,13 +99,13 @@ def test_storage_gone(pic1):
def test_replace_file_with_file(pic1):
product = Product.objects.create(image=pic1['filename'])
assert os.path.exists(pic1['path'])
randomPic = random_pic()
product.image = randomPic
random_pic_name = get_random_pic_name()
product.image = random_pic_name
with transaction.atomic(get_using(product)):
product.save()
assert not os.path.exists(pic1['path'])
assert product.image
new_image_path = os.path.join(settings.MEDIA_ROOT, randomPic)
new_image_path = os.path.join(settings.MEDIA_ROOT, random_pic_name)
assert product.image.path == new_image_path


Expand Down Expand Up @@ -136,7 +137,7 @@ def test_replace_file_with_none(pic1):
def test_replace_file_proxy(pic1):
product = ProductProxy.objects.create(image=pic1['filename'])
assert os.path.exists(pic1['path'])
product.image = random_pic()
product.image = get_random_pic_name()
with transaction.atomic(get_using(product)):
product.save()
assert not os.path.exists(pic1['path'])
Expand All @@ -146,7 +147,7 @@ def test_replace_file_proxy(pic1):
def test_replace_file_unmanaged(pic1):
product = ProductUnmanaged.objects.create(image=pic1['filename'])
assert os.path.exists(pic1['path'])
product.image = random_pic()
product.image = get_random_pic_name()
with transaction.atomic(get_using(product)):
product.save()
assert not os.path.exists(pic1['path'])
Expand All @@ -158,7 +159,7 @@ def test_replace_file_deferred(pic1):
product = Product.objects.create(image=pic1['filename'])
assert os.path.exists(pic1['path'])
product_deferred = Product.objects.defer('image_default').get(id=product.id)
product_deferred.image = random_pic()
product_deferred.image = get_random_pic_name()
with transaction.atomic(get_using(product)):
product_deferred.save()
assert not os.path.exists(pic1['path'])
Expand Down Expand Up @@ -188,10 +189,10 @@ def test_remove_model_instance_default(pic1):
def test_replace_file_with_file_default(pic1):
product = Product.objects.create()
assert os.path.exists(pic1['srcpath'])
randomPic1 = random_pic()
randomPic2 = random_pic()
product.image_default = randomPic1
product.image_default_callable = randomPic2
random_pic_name1 = get_random_pic_name()
random_pic_name2 = get_random_pic_name()
product.image_default = random_pic_name1
product.image_default_callable = random_pic_name2
with transaction.atomic(get_using(product)):
product.save()
assert os.path.exists(pic1['srcpath'])
Expand All @@ -210,13 +211,13 @@ def test_remove_model_instance_ignore(pic1):
def test_replace_file_with_file_ignore(pic1):
product = ProductIgnore.objects.create(image=pic1['filename'])
assert os.path.exists(pic1['path'])
randomPic = random_pic()
product.image = randomPic
random_pic_name = get_random_pic_name()
product.image = random_pic_name
with transaction.atomic(get_using(product)):
product.save()
assert os.path.exists(pic1['path'])
assert product.image
new_image_path = os.path.join(settings.MEDIA_ROOT, randomPic)
new_image_path = os.path.join(settings.MEDIA_ROOT, random_pic_name)
assert product.image.path == new_image_path


Expand Down Expand Up @@ -300,3 +301,14 @@ def test_exception_on_save(settings, pic1, caplog):
pic1['filename'])
)
]


@pytest.mark.django_db(transaction=True)
def test_cascade_delete(pic1):
root = RootProduct.objects.create()
branch = BranchProduct.objects.create(root=root, image=pic1['filename'])
assert os.path.exists(pic1['path'])
root = RootProduct.objects.get()
with transaction.atomic(get_using(root)):
root.delete()
assert not os.path.exists(pic1['path'])
Loading

0 comments on commit c249ff5

Please sign in to comment.