Files
python/exercises/practice/flatten-array/flatten_array_test.py
BethanyG e7a6b0dc7d [JinJa2] Corrected the macro used for comments on the test file. (#3373)
* Corrected the macro for comments on the test file.
* Added current_date (utcnow()) variable available for template macros.
* Removed unnecessary datetime import from macros file.
* Regenerated all practice exercise test files to add timestamp.
* Changed `datetime.now(tz=timezone.utc)` to `datetime.now(tz=timezone.utc).date()`
* Second regeneration to remove `timestamp` and just keep `date` for test files.
[no important files changed]
2023-07-14 15:52:15 -07:00

71 lines
2.3 KiB
Python

import unittest
from flatten_array import (
flatten,
)
# These tests are auto-generated with test data from:
# https://github.com/exercism/problem-specifications/tree/main/exercises/flatten-array/canonical-data.json
# File last updated on 2023-07-14
class FlattenArrayTest(unittest.TestCase):
def test_empty(self):
inputs = []
expected = []
self.assertEqual(flatten(inputs), expected)
def test_no_nesting(self):
inputs = [0, 1, 2]
expected = [0, 1, 2]
self.assertEqual(flatten(inputs), expected)
def test_flattens_a_nested_array(self):
inputs = [[[]]]
expected = []
self.assertEqual(flatten(inputs), expected)
def test_flattens_array_with_just_integers_present(self):
inputs = [1, [2, 3, 4, 5, 6, 7], 8]
expected = [1, 2, 3, 4, 5, 6, 7, 8]
self.assertEqual(flatten(inputs), expected)
def test_5_level_nesting(self):
inputs = [0, 2, [[2, 3], 8, 100, 4, [[[50]]]], -2]
expected = [0, 2, 2, 3, 8, 100, 4, 50, -2]
self.assertEqual(flatten(inputs), expected)
def test_6_level_nesting(self):
inputs = [1, [2, [[3]], [4, [[5]]], 6, 7], 8]
expected = [1, 2, 3, 4, 5, 6, 7, 8]
self.assertEqual(flatten(inputs), expected)
def test_null_values_are_omitted_from_the_final_result(self):
inputs = [1, 2, None]
expected = [1, 2]
self.assertEqual(flatten(inputs), expected)
def test_consecutive_null_values_at_the_front_of_the_list_are_omitted_from_the_final_result(
self,
):
inputs = [None, None, 3]
expected = [3]
self.assertEqual(flatten(inputs), expected)
def test_consecutive_null_values_in_the_middle_of_the_list_are_omitted_from_the_final_result(
self,
):
inputs = [1, None, None, 4]
expected = [1, 4]
self.assertEqual(flatten(inputs), expected)
def test_6_level_nest_list_with_null_values(self):
inputs = [0, 2, [[2, 3], 8, [[100]], None, [[None]]], -2]
expected = [0, 2, 2, 3, 8, 100, -2]
self.assertEqual(flatten(inputs), expected)
def test_all_values_in_nested_list_are_null(self):
inputs = [None, [[[None]]], None, None, [[None, None], None], None]
expected = []
self.assertEqual(flatten(inputs), expected)