1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import unittest
from collections import namedtuple
from datetime import date, time, datetime
from unittest import mock
from knack.util import todict, to_snake_case, is_modern_terminal
class TestUtils(unittest.TestCase):
def test_application_todict_none(self):
the_input = None
actual = todict(the_input)
expected = None
self.assertEqual(actual, expected)
def test_application_todict_dict_empty(self):
the_input = {}
actual = todict(the_input)
expected = {}
self.assertEqual(actual, expected)
def test_application_todict_dict(self):
the_input = {'a': 'b'}
actual = todict(the_input)
expected = {'a': 'b'}
self.assertEqual(actual, expected)
def test_application_todict_list(self):
the_input = [{'a': 'b'}]
actual = todict(the_input)
expected = [{'a': 'b'}]
self.assertEqual(actual, expected)
def test_application_todict_obj(self):
MyObject = namedtuple('MyObject', 'a b')
the_input = MyObject('x', 'y')
actual = todict(the_input)
expected = {'a': 'x', 'b': 'y'}
self.assertEqual(actual, expected)
def test_application_todict_dict_with_obj(self):
MyObject = namedtuple('MyObject', 'a b')
mo = MyObject('x', 'y')
the_input = {'a': mo}
actual = todict(the_input)
expected = {'a': {'a': 'x', 'b': 'y'}}
self.assertEqual(actual, expected)
def test_application_todict_dict_with_date(self):
the_input = date(2017, 10, 13)
actual = todict(the_input)
expected = the_input.isoformat()
self.assertEqual(actual, expected)
def test_application_todict_dict_with_datetime(self):
the_input = datetime(2017, 10, 13, 1, 23, 45)
actual = todict(the_input)
expected = the_input.isoformat()
self.assertEqual(actual, expected)
def test_application_todict_dict_with_time(self):
the_input = time(1, 23, 45)
actual = todict(the_input)
expected = the_input.isoformat()
self.assertEqual(actual, expected)
def test_to_snake_case_from_camel(self):
the_input = 'thisIsCamelCase'
expected = 'this_is_camel_case'
actual = to_snake_case(the_input)
self.assertEqual(expected, actual)
def test_to_snake_case_empty(self):
the_input = ''
expected = ''
actual = to_snake_case(the_input)
self.assertEqual(expected, actual)
def test_to_snake_case_already_snake(self):
the_input = 'this_is_snake_cased'
expected = 'this_is_snake_cased'
actual = to_snake_case(the_input)
self.assertEqual(expected, actual)
def test_is_modern_terminal(self):
with mock.patch.dict("os.environ", clear=True):
self.assertEqual(is_modern_terminal(), False)
with mock.patch.dict("os.environ", TERM_PROGRAM='vscode'):
self.assertEqual(is_modern_terminal(), True)
with mock.patch.dict("os.environ", PYCHARM_HOSTED='1'):
self.assertEqual(is_modern_terminal(), True)
with mock.patch.dict("os.environ", WT_SESSION='c25cb945-246a-49e5-b37a-1e4b6671b916'):
self.assertEqual(is_modern_terminal(), True)
if __name__ == '__main__':
unittest.main()
|