Module quantum_inferno.tests.utilities.test_calculations

Classes

class CalculationsTest (methodName='runTest')

A class whose instances are single test cases.

By default, the test code itself should be placed in a method named 'runTest'.

If the fixture may be used for many test cases, create as many test methods as are needed. When instantiating such a TestCase subclass, specify in the constructor arguments the name of the test method that the instance is to execute.

Test authors should subclass TestCase for their own tests. Construction and deconstruction of the test's environment ('fixture') can be implemented by overriding the 'setUp' and 'tearDown' methods respectively.

If it is necessary to override the init method, the base class init method must always be called. It is important that subclasses should not change the signature of their init method, since instances of the classes are instantiated automatically by parts of the framework in order to be run.

When subclassing TestCase, you can set these attributes: * failureException: determines which exception will be raised when the instance's assertion methods fail; test methods raising this exception will be deemed to have 'failed' rather than 'errored'. * longMessage: determines whether long messages (including repr of objects used in assert methods) will be printed on failure in addition to any explicit message passed. * maxDiff: sets the maximum length of a diff in failure messages by assert methods using difflib. It is looked up as an instance attribute so can be configured by individual tests if required.

Create an instance of the class that will use the named test method when executed. Raises a ValueError if the instance does not have a method with the specified name.

Expand source code
class CalculationsTest(unittest.TestCase):
    @classmethod
    def setUpClass(cls) -> None:
        cls.timeseries, cls.timestamps, _, cls.sample_rate, _, _ = sigs.well_tempered_tone()

    def test_integrate_with_cumtrapz_timestamps_s(self):
        result = calc.integrate_with_cumtrapz_timestamps_s(self.timestamps, self.timeseries)
        self.assertEqual(len(result), 8192)
        self.assertEqual(result[0], 0)
        self.assertAlmostEqual(result[-1], -0.0012, 4)

    def test_integrate_with_cumtrapz_sample_rate_hz(self):
        result = calc.integrate_with_cumtrapz_sample_rate_hz(self.sample_rate, self.timeseries)
        self.assertEqual(len(result), 8192)
        self.assertEqual(result[0], 0)
        self.assertAlmostEqual(result[-1], -0.0012, 4)

    def test_derivative_with_gradient_timestamps_s(self):
        result = calc.derivative_with_gradient_timestamps_s(self.timestamps, self.timeseries)
        self.assertEqual(len(result), 8192)
        self.assertAlmostEqual(result[0], -85.42, 2)
        self.assertAlmostEqual(result[3], -354.39, 2)
        self.assertAlmostEqual(result[-1], 238.02, 2)

    def test_derivative_with_gradient_sample_rate_hz(self):
        result = calc.derivative_with_gradient_sample_rate_hz(self.sample_rate, self.timeseries)
        self.assertEqual(len(result), 8192)
        self.assertAlmostEqual(result[0], -85.42, 2)
        self.assertAlmostEqual(result[3], -354.39, 2)
        self.assertAlmostEqual(result[-1], 238.02, 2)

    def test_get_fill_from_filling_method(self):
        result = calc.get_fill_from_filling_method(self.timeseries, "zero")
        self.assertEqual(result, 0)
        result = calc.get_fill_from_filling_method(self.timeseries, "nan")
        self.assertTrue(np.isnan(result))
        result = calc.get_fill_from_filling_method(self.timeseries, "mean")
        self.assertAlmostEqual(result, -1.7e-16, 2)
        result = calc.get_fill_from_filling_method(self.timeseries, "median")
        self.assertAlmostEqual(result, 1.46e-15, 2)
        result = calc.get_fill_from_filling_method(self.timeseries, "min")
        self.assertEqual(result, -1.)
        result = calc.get_fill_from_filling_method(self.timeseries, "max")
        self.assertEqual(result, 1.)
        result = calc.get_fill_from_filling_method(self.timeseries, "tail")
        self.assertAlmostEqual(result, 0.89, 2)
        result = calc.get_fill_from_filling_method(self.timeseries, "head")
        self.assertEqual(result, 1.)

    def test_get_fill_from_filling_method_invalid(self):
        with self.assertRaises(ValueError):
            calc.get_fill_from_filling_method(np.array([[1], [2]]), "zero")

    def test_append_fill_start(self):
        result = calc.append_fill(self.timeseries, 0, "start")
        self.assertEqual(len(result), 8193)
        self.assertEqual(result[0], 0)
        self.assertAlmostEqual(result[-1], .89, 2)

    def test_append_fill_end(self):
        result = calc.append_fill(self.timeseries, 0, "end")
        self.assertEqual(len(result), 8193)
        self.assertEqual(result[0], 1.)
        self.assertEqual(result[-1], 0)

    def test_derivative_with_difference_timestamps_s(self):
        result = calc.derivative_with_difference_timestamps_s(self.timestamps, self.timeseries)
        self.assertEqual(len(result), 8192)
        self.assertAlmostEqual(result[0], -85.42, 2)
        self.assertEqual(result[-1], 0.)

    def test_derivative_with_difference_sample_rate_hz(self):
        result = calc.derivative_with_difference_sample_rate_hz(10, self.timeseries)
        self.assertEqual(len(result), 8192)
        self.assertAlmostEqual(result[0], -1.07, 2)
        self.assertEqual(result[-1], 0.)

    def test_round_value(self):
        result = calc.round_value(1.5, "floor")
        self.assertEqual(result, 1)
        result = calc.round_value(1.5, "ceil")
        self.assertEqual(result, 2)
        result = calc.round_value(1.5, "round")
        self.assertEqual(result, 2)

    def test_get_num_points(self):
        result = calc.get_num_points(10.0, 10.0, "round", "points")
        self.assertEqual(result, 100)
        result = calc.get_num_points(10.0, 10.0, "round", "log2")
        self.assertEqual(result, 7)
        result = calc.get_num_points(5.0, 2.0, "round", "pow2")
        self.assertEqual(result, 1024)

Ancestors

  • unittest.case.TestCase

Static methods

def setUpClass() ‑> None

Hook method for setting up class fixture before running tests in the class.

Methods

def test_append_fill_end(self)
def test_append_fill_start(self)
def test_derivative_with_difference_sample_rate_hz(self)
def test_derivative_with_difference_timestamps_s(self)
def test_derivative_with_gradient_sample_rate_hz(self)
def test_derivative_with_gradient_timestamps_s(self)
def test_get_fill_from_filling_method(self)
def test_get_fill_from_filling_method_invalid(self)
def test_get_num_points(self)
def test_integrate_with_cumtrapz_sample_rate_hz(self)
def test_integrate_with_cumtrapz_timestamps_s(self)
def test_round_value(self)