test_utils.py 783 B

12345678910111213141516171819202122
  1. import json
  2. from django.test import TestCase
  3. from jet.tests.models import TestModel
  4. from jet.utils import JsonResponse, get_model_instance_label
  5. class UtilsTestCase(TestCase):
  6. def test_json_response(self):
  7. response = JsonResponse({'str': 'string', 'int': 1})
  8. response_dict = json.loads(response.content)
  9. expected_dict = {"int": 1, "str": "string"}
  10. self.assertEqual(response_dict, expected_dict)
  11. self.assertEqual(response.get('Content-Type'), 'application/json')
  12. def test_get_model_instance_label(self):
  13. field1 = 'value'
  14. field2 = 2
  15. pinned_application = TestModel.objects.create(field1=field1, field2=field2)
  16. self.assertEqual(get_model_instance_label(pinned_application), '%s%d' % (field1, field2))