6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-09-21 00:49:02 +00:00
tutor/tests/test_serialize.py

36 lines
1.0 KiB
Python
Raw Normal View History

import unittest
from tutor import serialize
class SerializeTests(unittest.TestCase):
def test_parse_str(self):
self.assertEqual("abcd", serialize.parse("abcd"))
def test_parse_int(self):
self.assertEqual(1, serialize.parse("1"))
def test_parse_bool(self):
self.assertEqual(True, serialize.parse("true"))
self.assertEqual(False, serialize.parse("false"))
def test_parse_null(self):
self.assertIsNone(serialize.parse("null"))
def test_parse_invalid_format(self):
self.assertEqual('["abcd"', serialize.parse('["abcd"'))
def test_parse_list(self):
self.assertEqual(["abcd"], serialize.parse('["abcd"]'))
def test_parse_weird_chars(self):
self.assertEqual("*@google.com", serialize.parse("*@google.com"))
def test_parse_empty_string(self):
self.assertEqual("", serialize.parse("''"))
# def test_dump_null(self):# # Unfortunately, this fails as the output is "null\n...\n"
# self.assertEqual("null", serialize.dumps(None))