Files
python/exercises/practice/flatten-array/flatten_array_test.py
BethanyG e348197fc0 Updated tests and regenerated test cases for Flatten Array. (#3881)
While the example didn't need to be altered, the test cases changed enough, I think we need to re-run these.
2025-03-22 11:50:30 -07:00

71 lines
2.3 KiB
Python

# 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 2025-03-22
import unittest
from flatten_array import (
flatten,
)
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_array_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_array_are_omitted_from_the_final_result(
self,
):
inputs = [1, None, None, 4]
expected = [1, 4]
self.assertEqual(flatten(inputs), expected)
def test_6_level_nested_array_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_array_are_null(self):
inputs = [None, [[[None]]], None, None, [[None, None], None], None]
expected = []
self.assertEqual(flatten(inputs), expected)