Added tests for missing pyyaml.

This test makes sure an YAML import errors are communicated to the
caller rather than stating the serializer does not exist.
This commit is contained in:
Roberto Aguilar 2013-09-06 15:56:48 +00:00
parent 630eb0564a
commit d8d61d8260
2 changed files with 22 additions and 1 deletions

View File

@ -1,5 +1,6 @@
from __future__ import unicode_literals
import unittest
import warnings
from django.contrib.sites.models import Site

View File

@ -14,7 +14,7 @@ except ImportError:
from django.conf import settings
from django.core import serializers
from django.core import management, serializers
from django.db import transaction, connection
from django.test import TestCase, TransactionTestCase, Approximate
from django.utils import six
@ -440,6 +440,26 @@ class JsonSerializerTransactionTestCase(SerializersTransactionTestBase, Transact
}]"""
@unittest.skipIf(HAS_YAML, "Yaml is installed")
class NoYamlSerializerTestCase(TestCase):
"""Not having pyyaml installed provides a misleading error
#12756
"""
def test_missing_pyyaml_error_message(self):
"""Using yaml serializer without pyyaml raises ImportError"""
jane = Author(name="Jane")
self.assertRaises(ImportError, serializers.serialize, "yaml", [jane])
def test_deserializer_pyyaml_error_message(self):
"""Using yaml deserializer without pyyaml raises ImportError"""
self.assertRaises(ImportError, serializers.deserialize, "yaml", "")
def test_missing_pyyaml_error_message(self):
self.assertRaisesRegexp(management.CommandError, r'No module named yaml',
management.call_command, 'dumpdata', format='yaml')
@unittest.skipUnless(HAS_YAML, "No yaml library detected")
class YamlSerializerTestCase(SerializersTestBase, TestCase):
serializer_name = "yaml"