Skip to content

Potential Case Sensitivity Test Case #897

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -772,6 +772,18 @@ def test_with_case_insensitive_option_and_creation(self):
tag_names = list(orange.tags.names())
self.assertEqual(len(tag_names), 1, tag_names)

def test_case_sensitivity_fallback(self):
orange = self.food_model.objects.create(name="orange")
tag_1 = self.tag_model.objects.create(name="spain")
tag_2 = self.tag_model.objects.create(name="Spain")
with override_settings(TAGGIT_CASE_INSENSITIVE=True):
# here we are going to do a case-insensitive lookup
# that should end up just finding the 'first' tag
orange.tags.add("SPAIN")
self.assertEqual(self.tag_model.objects.count(), 2)
# we should have used the older tag (tag_1)
self.assertEqual(list(orange.tags.all()), [tag_1])

@override_settings(TAGGIT_CASE_INSENSITIVE=True)
def test_with_case_insensitive_option_new_and_old(self):
orange = self.food_model.objects.create(name="orange")
Expand Down
Loading