mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-05 04:48:00 +00:00
731de6a747
When running `config save --set KEY=""`, KEY was incorrectly interpreted as null.
36 lines
1.0 KiB
Python
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))
|