mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed #28117 -- Added a helpful message in loaddata when psycopg2 can't load a fixture due to NUL characters.
This commit is contained in:
parent
51a00749e9
commit
58ec55b157
3 changed files with 21 additions and 1 deletions
9
tests/fixtures/tests.py
vendored
9
tests/fixtures/tests.py
vendored
|
@ -571,6 +571,15 @@ class FixtureLoadingTests(DumpDataAssertMixin, TestCase):
|
|||
management.call_command('loaddata', 'invalid.json', verbosity=0)
|
||||
self.assertIn("Could not load fixtures.Article(pk=1):", cm.exception.args[0])
|
||||
|
||||
@unittest.skipUnless(connection.vendor == 'postgresql', 'psycopg2 prohibits null characters in data.')
|
||||
def test_loaddata_null_characters_on_postgresql(self):
|
||||
msg = (
|
||||
'Could not load fixtures.Article(pk=2): '
|
||||
'A string literal cannot contain NUL (0x00) characters.'
|
||||
)
|
||||
with self.assertRaisesMessage(ValueError, msg):
|
||||
management.call_command('loaddata', 'null_character_in_field_value.json')
|
||||
|
||||
def test_loaddata_app_option(self):
|
||||
with self.assertRaisesMessage(CommandError, "No fixture named 'db_fixture_1' found."):
|
||||
management.call_command('loaddata', 'db_fixture_1', verbosity=0, app_label="someotherapp")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue