Files
python/exercises/practice/all-your-base/all_your_base_test.py
BethanyG be794198e1 [Resistor Color Expert]: Corrected Small Typos (#3469)
* Corrected small typos around resistor bands.

* Due to failing CI, alterations to the test generator script were needed.
The generated vs submitted diff now skips the first three lines of the file
so that the generation date is not picked up and flagged as needing regeneration.

Sadly, a workaround was also needed to prevent Python difflib from noting the difference
anyways and producing an empty "false positive" diff.

All templates and test files also needed to be altered to ensure that the first three
lines of every test file will always be the autogeneration comment and date.

Hopefully, this will now stop the CI failures without creating any subtle additional bugs.

* Touch up to bowling template.  Added back the error raising utility.
* Touch up to two-bucket template to add back in error raising utility.
[no important files changed]
2023-07-21 16:54:40 -07:00

106 lines
3.8 KiB
Python

# These tests are auto-generated with test data from:
# https://github.com/exercism/problem-specifications/tree/main/exercises/all-your-base/canonical-data.json
# File last updated on 2023-07-20
import unittest
from all_your_base import (
rebase,
)
class AllYourBaseTest(unittest.TestCase):
def test_single_bit_one_to_decimal(self):
self.assertEqual(rebase(2, [1], 10), [1])
def test_binary_to_single_decimal(self):
self.assertEqual(rebase(2, [1, 0, 1], 10), [5])
def test_single_decimal_to_binary(self):
self.assertEqual(rebase(10, [5], 2), [1, 0, 1])
def test_binary_to_multiple_decimal(self):
self.assertEqual(rebase(2, [1, 0, 1, 0, 1, 0], 10), [4, 2])
def test_decimal_to_binary(self):
self.assertEqual(rebase(10, [4, 2], 2), [1, 0, 1, 0, 1, 0])
def test_trinary_to_hexadecimal(self):
self.assertEqual(rebase(3, [1, 1, 2, 0], 16), [2, 10])
def test_hexadecimal_to_trinary(self):
self.assertEqual(rebase(16, [2, 10], 3), [1, 1, 2, 0])
def test_15_bit_integer(self):
self.assertEqual(rebase(97, [3, 46, 60], 73), [6, 10, 45])
def test_empty_list(self):
self.assertEqual(rebase(2, [], 10), [0])
def test_single_zero(self):
self.assertEqual(rebase(10, [0], 2), [0])
def test_multiple_zeros(self):
self.assertEqual(rebase(10, [0, 0, 0], 2), [0])
def test_leading_zeros(self):
self.assertEqual(rebase(7, [0, 6, 0], 10), [4, 2])
def test_input_base_is_one(self):
with self.assertRaises(ValueError) as err:
rebase(1, [0], 10)
self.assertEqual(type(err.exception), ValueError)
self.assertEqual(err.exception.args[0], "input base must be >= 2")
def test_input_base_is_zero(self):
with self.assertRaises(ValueError) as err:
rebase(0, [], 10)
self.assertEqual(type(err.exception), ValueError)
self.assertEqual(err.exception.args[0], "input base must be >= 2")
def test_input_base_is_negative(self):
with self.assertRaises(ValueError) as err:
rebase(-2, [1], 10)
self.assertEqual(type(err.exception), ValueError)
self.assertEqual(err.exception.args[0], "input base must be >= 2")
def test_negative_digit(self):
with self.assertRaises(ValueError) as err:
rebase(2, [1, -1, 1, 0, 1, 0], 10)
self.assertEqual(type(err.exception), ValueError)
self.assertEqual(
err.exception.args[0], "all digits must satisfy 0 <= d < input base"
)
def test_invalid_positive_digit(self):
with self.assertRaises(ValueError) as err:
rebase(2, [1, 2, 1, 0, 1, 0], 10)
self.assertEqual(type(err.exception), ValueError)
self.assertEqual(
err.exception.args[0], "all digits must satisfy 0 <= d < input base"
)
def test_output_base_is_one(self):
with self.assertRaises(ValueError) as err:
rebase(2, [1, 0, 1, 0, 1, 0], 1)
self.assertEqual(type(err.exception), ValueError)
self.assertEqual(err.exception.args[0], "output base must be >= 2")
def test_output_base_is_zero(self):
with self.assertRaises(ValueError) as err:
rebase(10, [7], 0)
self.assertEqual(type(err.exception), ValueError)
self.assertEqual(err.exception.args[0], "output base must be >= 2")
def test_output_base_is_negative(self):
with self.assertRaises(ValueError) as err:
rebase(2, [1], -7)
self.assertEqual(type(err.exception), ValueError)
self.assertEqual(err.exception.args[0], "output base must be >= 2")
def test_both_bases_are_negative(self):
with self.assertRaises(ValueError) as err:
rebase(-2, [1], -7)
self.assertEqual(type(err.exception), ValueError)
self.assertEqual(err.exception.args[0], "input base must be >= 2")