| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- from django.contrib.auth.models import User
- from django.contrib.contenttypes.models import ContentType
- from django.contrib.postgres.fields import ArrayField
- from django.core.exceptions import FieldDoesNotExist
- from django.db.models import ManyToManyField
- from django.forms.models import model_to_dict
- from django.test import Client, TestCase as _TestCase
- from netaddr import IPNetwork
- from taggit.managers import TaggableManager
- from users.models import ObjectPermission
- from utilities.permissions import resolve_permission_ct
- from .utils import extract_form_failures
- __all__ = (
- 'ModelTestCase',
- 'TestCase',
- )
- class TestCase(_TestCase):
- user_permissions = ()
- def setUp(self):
- # Create the test user and assign permissions
- self.user = User.objects.create_user(username='testuser')
- self.add_permissions(*self.user_permissions)
- # Initialize the test client
- self.client = Client()
- self.client.force_login(self.user)
- #
- # Permissions management
- #
- def add_permissions(self, *names):
- """
- Assign a set of permissions to the test user. Accepts permission names in the form <app>.<action>_<model>.
- """
- for name in names:
- ct, action = resolve_permission_ct(name)
- obj_perm = ObjectPermission(name=name, actions=[action])
- obj_perm.save()
- obj_perm.users.add(self.user)
- obj_perm.object_types.add(ct)
- #
- # Custom assertions
- #
- def assertHttpStatus(self, response, expected_status):
- """
- TestCase method. Provide more detail in the event of an unexpected HTTP response.
- """
- err_message = None
- # Construct an error message only if we know the test is going to fail
- if response.status_code != expected_status:
- if hasattr(response, 'data'):
- # REST API response; pass the response data through directly
- err = response.data
- else:
- # Attempt to extract form validation errors from the response HTML
- form_errors = extract_form_failures(response.content)
- err = form_errors or response.content or 'No data'
- err_message = f"Expected HTTP status {expected_status}; received {response.status_code}: {err}"
- self.assertEqual(response.status_code, expected_status, err_message)
- class ModelTestCase(TestCase):
- """
- Parent class for TestCases which deal with models.
- """
- model = None
- def _get_queryset(self):
- """
- Return a base queryset suitable for use in test methods.
- """
- return self.model.objects.all()
- def prepare_instance(self, instance):
- """
- Test cases can override this method to perform any necessary manipulation of an instance prior to its evaluation
- against test data. For example, it can be used to decrypt a Secret's plaintext attribute.
- """
- return instance
- def model_to_dict(self, instance, fields, api=False):
- """
- Return a dictionary representation of an instance.
- """
- # Prepare the instance and call Django's model_to_dict() to extract all fields
- model_dict = model_to_dict(self.prepare_instance(instance), fields=fields)
- # Map any additional (non-field) instance attributes that were specified
- for attr in fields:
- if hasattr(instance, attr) and attr not in model_dict:
- model_dict[attr] = getattr(instance, attr)
- for key, value in list(model_dict.items()):
- try:
- field = instance._meta.get_field(key)
- except FieldDoesNotExist:
- # Attribute is not a model field
- continue
- # Handle ManyToManyFields
- if value and type(field) in (ManyToManyField, TaggableManager):
- if field.related_model is ContentType:
- model_dict[key] = sorted([f'{ct.app_label}.{ct.model}' for ct in value])
- else:
- model_dict[key] = sorted([obj.pk for obj in value])
- if api:
- # Replace ContentType numeric IDs with <app_label>.<model>
- if type(getattr(instance, key)) is ContentType:
- ct = ContentType.objects.get(pk=value)
- model_dict[key] = f'{ct.app_label}.{ct.model}'
- # Convert IPNetwork instances to strings
- elif type(value) is IPNetwork:
- model_dict[key] = str(value)
- else:
- # Convert ArrayFields to CSV strings
- if type(instance._meta.get_field(key)) is ArrayField:
- model_dict[key] = ','.join([str(v) for v in value])
- return model_dict
- #
- # Custom assertions
- #
- def assertInstanceEqual(self, instance, data, exclude=None, api=False):
- """
- Compare a model instance to a dictionary, checking that its attribute values match those specified
- in the dictionary.
- :param instance: Python object instance
- :param data: Dictionary of test data used to define the instance
- :param exclude: List of fields to exclude from comparison (e.g. passwords, which get hashed)
- :param api: Set to True is the data is a JSON representation of the instance
- """
- if exclude is None:
- exclude = []
- fields = [k for k in data.keys() if k not in exclude]
- model_dict = self.model_to_dict(instance, fields=fields, api=api)
- # Omit any dictionary keys which are not instance attributes or have been excluded
- relevant_data = {
- k: v for k, v in data.items() if hasattr(instance, k) and k not in exclude
- }
- self.assertDictEqual(model_dict, relevant_data)
|