Opened 11 years ago

Last modified 6 weeks ago

#21286 new Bug

Fix commented out tests in serializers.test_data — at Version 5

Reported by: Tim Graham Owned by: nobody
Component: Core (Serialization) Version: dev
Severity: Normal Keywords:
Cc: bmispelon@…, Adam Zapletal, Ülgen Sarıkavak Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Claude Paroz)

tests/serializers/test_data.py contains some commented out items in the test_data list. I think it may be because not all serializers support those items. If this is the case, we should make appropriate modifications so the tests are run where they are supported and skipped where not.

Change History (5)

comment:1 by Baptiste Mispelon, 11 years ago

Cc: bmispelon@… added

While looking into this, I believe I found the reason why some of the tests are commented: https://github.com/django/django/blob/8d6953d55c3aba04bbaf0f268499d6e405c653ff/tests/serializers_regress/models.py#L168-L170

The comment is not completely correct however because a few of the commented out models trigger and error immediately, regardless of the backend (TypeError: 'primary_key' is not a valid argument for ...).

  • FilePKData, ImagePKData and NullBooleanPKData can be deleted because of this.
  • DatePKData, DateTimePKData, TimePKData and TextPKData might be database-dependent (they all work under sqlite).
  • Test case 51 (FileData) might be worth looking into a bit deeper. It fails when uncommented and I believe it might be caused by the weird FileField.__eq__ implementation.

comment:2 by Claude Paroz, 9 years ago

FileField and NULL value issue is tracked in #10244.

comment:3 by Claude Paroz <claude@…>, 7 years ago

In d02fc8d:

Refs #21286 -- Enabled serializer tests with date/datetime pk model

comment:4 by Claude Paroz <claude@…>, 7 years ago

In 01c6a3e:

Refs #21286 -- Enabled serializer tests with time pk model

comment:5 by Claude Paroz, 7 years ago

Description: modified (diff)
Summary: Fix commented out tests in serializers_regressFix commented out tests in serializers.test_data
Note: See TracTickets for help on using tickets.
Back to Top