python-benedict/tests/dicts/io/test_io_dict.py

53 lines
1.4 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
from benedict.dicts.io import IODict
import os
import shutil
import unittest
class io_dict_test_case(unittest.TestCase):
2022-02-13 10:35:43 +00:00
"""
This class describes an IODict test case.
"""
@classmethod
def tearDownClass(cls):
2022-02-13 10:35:43 +00:00
dir_path = cls.output_path(filepath="")
shutil.rmtree(dir_path, ignore_errors=True)
@staticmethod
def input_path(filepath):
dir_path = os.path.dirname(os.path.realpath(__file__))
2022-02-13 10:35:43 +00:00
return os.path.join(dir_path, "input/{}".format(filepath))
2020-02-03 18:01:28 +00:00
@staticmethod
def input_url(filepath):
2022-02-13 10:35:43 +00:00
return "https://raw.githubusercontent.com/fabiocaccamo/python-benedict/master/tests/dicts/io/input/{}".format(
filepath
)
2020-02-03 18:01:28 +00:00
@staticmethod
def output_path(filepath):
dir_path = os.path.dirname(os.path.realpath(__file__))
2022-02-13 10:35:43 +00:00
return os.path.join(dir_path, "output/{}".format(filepath))
def assertFileExists(self, filepath):
self.assertTrue(os.path.isfile(filepath))
def test_init_with_key_value_list(self):
2022-02-13 10:35:43 +00:00
d = IODict(a="1", b="2", c="3")
self.assertEqual(
d,
{
"a": "1",
"b": "2",
"c": "3",
},
)
def test_init_with_invalid_data(self):
with self.assertRaises(ValueError):
2022-02-13 10:35:43 +00:00
d = IODict("invalid json data")