Fixed #27219 -- Changed cx_Oracle client encoding to AL32UTF8 to allow 4-byte characters.

This commit is contained in:
Dmitry Medvinsky 2016-09-13 15:14:49 +03:00 committed by Tim Graham
parent 358c6f21f8
commit 1a9f6db5ff
3 changed files with 25 additions and 3 deletions

View file

@ -1,4 +1,9 @@
from django.db import models
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from unittest import skipIf
from django.db import connection, models
from django.test import TestCase
from .models import Post
@ -23,3 +28,9 @@ class TextFieldTests(TestCase):
def test_lookup_integer_in_textfield(self):
self.assertEqual(Post.objects.filter(body=24).count(), 0)
@skipIf(connection.vendor == 'mysql', 'See https://code.djangoproject.com/ticket/18392')
def test_emoji(self):
p = Post.objects.create(title='Whatever', body='Smile 😀.')
p.refresh_from_db()
self.assertEqual(p.body, 'Smile 😀.')