source: python/tests/test_fvec.py @ 7b8e51c

feature/cnnfeature/crepefix/ffmpeg5
Last change on this file since 7b8e51c was fc144a5, checked in by Paul Brossier <piem@piem.org>, 6 years ago

[tests] avoid some imports, add missing main

  • Property mode set to 100755
File size: 4.4 KB
RevLine 
[75e715f]1#! /usr/bin/env python
[1ebf8770]2
[88554b9]3import numpy as np
4from numpy.testing import TestCase, assert_equal, assert_almost_equal
[4c01c0f]5from aubio import fvec, zero_crossing_rate, alpha_norm, min_removal
[c4b2183]6from aubio import float_type
[b7f3aaf]7
[c4b2183]8wrong_type = 'float32' if float_type == 'float64' else 'float64'
9
[973206a]10default_size = 512
11
[b7f3aaf]12class aubio_fvec_test_case(TestCase):
13
14    def test_vector_created_with_zeroes(self):
[1a6ef2c]15        a = fvec(10)
[c4b2183]16        assert a.dtype == float_type
[973206a]17        assert a.shape == (10,)
[88554b9]18        assert_equal(a, 0)
[b7f3aaf]19
[493e6f7]20    def test_vector_create_with_list(self):
[88554b9]21        a = fvec([0, 1, 2, 3])
[c4b2183]22        assert a.dtype == float_type
[973206a]23        assert a.shape == (4,)
[88554b9]24        assert_equal(list(range(4)), a)
[493e6f7]25
[b7f3aaf]26    def test_vector_assign_element(self):
[973206a]27        a = fvec(default_size)
[b7f3aaf]28        a[0] = 1
29        assert_equal(a[0], 1)
30
31    def test_vector_assign_element_end(self):
[973206a]32        a = fvec(default_size)
[b7f3aaf]33        a[-1] = 1
34        assert_equal(a[-1], 1)
[1a6ef2c]35        assert_equal(a[len(a)-1], 1)
[b7f3aaf]36
37    def test_vector(self):
38        a = fvec()
[88554b9]39        len(a)
40        _ = a[0]
41        np.array(a)
[b7f3aaf]42        a = fvec(1)
[88554b9]43        a = fvec(10)
44        _ = a.T
[b7f3aaf]45
[88554b9]46class aubio_fvec_wrong_values(TestCase):
[b7f3aaf]47
[88554b9]48    def test_negative_length(self):
49        """ test creating fvec with negative length fails (pure python) """
50        self.assertRaises(ValueError, fvec, -10)
51
[0b6d23d]52    def test_zero_length(self):
[88554b9]53        """ test creating fvec with zero length fails (pure python) """
54        self.assertRaises(ValueError, fvec, 0)
55
56    def test_out_of_bound(self):
57        """ test assiging fvec out of bounds fails (pure python) """
[b7f3aaf]58        a = fvec(2)
[88554b9]59        self.assertRaises(IndexError, a.__getitem__, 3)
60        self.assertRaises(IndexError, a.__getitem__, 2)
61
[7a54b37]62    def test_wrong_dimensions(self):
63        a = np.array([[[1, 2], [3, 4]]], dtype=float_type)
64        self.assertRaises(ValueError, fvec, a)
65
66    def test_wrong_size(self):
67        a = np.ndarray([0,], dtype=float_type)
68        self.assertRaises(ValueError, fvec, a)
69
[88554b9]70class aubio_wrong_fvec_input(TestCase):
71    """ uses min_removal to test PyAubio_IsValidVector """
72
73    def test_no_input(self):
74        self.assertRaises(TypeError, min_removal)
75
76    def test_none(self):
77        self.assertRaises(ValueError, min_removal, None)
78
79    def test_wrong_scalar(self):
80        a = np.array(10, dtype=float_type)
81        self.assertRaises(ValueError, min_removal, a)
82
83    def test_wrong_dimensions(self):
84        a = np.array([[[1, 2], [3, 4]]], dtype=float_type)
85        self.assertRaises(ValueError, min_removal, a)
86
87    def test_wrong_array_size(self):
88        x = np.array([], dtype=float_type)
89        self.assertRaises(ValueError, min_removal, x)
90
91    def test_wrong_type(self):
92        a = np.zeros(10, dtype=wrong_type)
93        self.assertRaises(ValueError, min_removal, a)
94
95    def test_wrong_list_input(self):
96        self.assertRaises(ValueError, min_removal, [0., 1.])
97
98    def test_good_input(self):
99        a = np.zeros(10, dtype=float_type)
100        assert_equal(np.zeros(10, dtype=float_type), min_removal(a))
101
102class aubio_alpha_norm(TestCase):
103
104    def test_alpha_norm_of_random(self):
105        x = np.random.rand(1024).astype(float_type)
106        alpha = np.random.rand() * 5.
107        x_alpha_norm = (np.sum(np.abs(x)**alpha)/len(x))**(1/alpha)
[88c89e3]108        assert_almost_equal(alpha_norm(x, alpha), x_alpha_norm, decimal = 4)
[88554b9]109
110class aubio_zero_crossing_rate_test(TestCase):
[b7f3aaf]111
112    def test_zero_crossing_rate(self):
[88554b9]113        a = np.array([0, 1, -1], dtype=float_type)
114        assert_almost_equal(zero_crossing_rate(a), 1./3.)
115
116    def test_zero_crossing_rate_zeros(self):
117        a = np.zeros(100, dtype=float_type)
118        self.assertEqual(zero_crossing_rate(a), 0)
119
120    def test_zero_crossing_rate_minus_ones(self):
121        a = np.ones(100, dtype=float_type)
122        self.assertEqual(zero_crossing_rate(a), 0)
123
124    def test_zero_crossing_rate_plus_ones(self):
125        a = np.ones(100, dtype=float_type)
126        self.assertEqual(zero_crossing_rate(a), 0)
127
128class aubio_fvec_min_removal(TestCase):
[b7f3aaf]129
130    def test_fvec_min_removal_of_array(self):
[88554b9]131        a = np.array([20, 1, 19], dtype=float_type)
[b7f3aaf]132        b = min_removal(a)
[88554b9]133        assert_equal(b, [19, 0, 18])
134
135class aubio_fvec_test_memory(TestCase):
[b7f3aaf]136
[fb3f62e]137    def test_pass_to_numpy(self):
138        a = fvec(10)
[0b6d23d]139        a[:] = 1.
[fb3f62e]140        b = a
141        del a
[88554b9]142        assert_equal(b, 1.)
[fb3f62e]143        c = fvec(10)
144        c = b
145        del b
[88554b9]146        assert_equal(c, 1.)
[fb3f62e]147        del c
148
[b7f3aaf]149if __name__ == '__main__':
[fc144a5]150    from unittest import main
[b7f3aaf]151    main()
Note: See TracBrowser for help on using the repository browser.