Add unit test for utils.dictfetchall
This commit is contained in:
parent
c6583c925e
commit
d25f738b03
1 changed files with 14 additions and 0 deletions
|
@ -11,9 +11,11 @@
|
||||||
# (c) 2016 Valentin Samir
|
# (c) 2016 Valentin Samir
|
||||||
"""Tests module for utils"""
|
"""Tests module for utils"""
|
||||||
from django.test import TestCase, RequestFactory
|
from django.test import TestCase, RequestFactory
|
||||||
|
from django.db import connection
|
||||||
|
|
||||||
import six
|
import six
|
||||||
import warnings
|
import warnings
|
||||||
|
import datetime
|
||||||
|
|
||||||
from cas_server import utils
|
from cas_server import utils
|
||||||
|
|
||||||
|
@ -237,3 +239,15 @@ class UtilsTestCase(TestCase):
|
||||||
|
|
||||||
# version is cached 24h so calling it a second time should return the save value
|
# version is cached 24h so calling it a second time should return the save value
|
||||||
self.assertEqual(version, utils.last_version())
|
self.assertEqual(version, utils.last_version())
|
||||||
|
|
||||||
|
def test_dictfetchall(self):
|
||||||
|
"""test the function dictfetchall"""
|
||||||
|
with connection.cursor() as curs:
|
||||||
|
curs.execute("SELECT * FROM django_migrations")
|
||||||
|
results = utils.dictfetchall(curs)
|
||||||
|
self.assertIsInstance(results, list)
|
||||||
|
self.assertTrue(len(results) > 0)
|
||||||
|
for result in results:
|
||||||
|
self.assertIsInstance(result, dict)
|
||||||
|
self.assertIn('applied', result)
|
||||||
|
self.assertIsInstance(result['applied'], datetime.datetime)
|
||||||
|
|
Loading…
Reference in a new issue