7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-17 04:42:21 +00:00
tutor/tests/test_serialize.py
Régis Behmo 731de6a747 Fix incorrectly parsed empty strings in config save --set ...=...
When running `config save --set KEY=""`, KEY was incorrectly interpreted
as null.
2020-01-21 18:32:34 +01:00

36 lines
1.0 KiB
Python

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))