예제 #1
0
class InitLoadSaveTests(unittest.TestCase):
    """
    Make sure the *Signal* object is set up correctly.
    """
    filename = '.InitLoadSaveTests_1.h5'
    def setUp(self):
        """
        Create an trial *Signal* object
        """
        
        self.s = Signal(self.filename)
        self.s.load_nparray(np.arange(3),"x","nm",10E-6)

    def test_report(self):
        """Initialize Signal object"""

        self.assertEqual(self.s.report[0],'HDF5 file .InitLoadSaveTests_1.h5 created in core memory')

    def test_x(self):
        """Check x-array data."""
              
        self.assertTrue(np.allclose(self.s.f['x'],10E-6*np.array([0, 1, 2]), rtol=1e-05, atol=1e-08))

    def test_y(self):
        """Check y-array data."""
        
        self.assertTrue(np.allclose(self.s.f['y'],np.array([0, 1, 2]), rtol=1e-05, atol=1e-08))

    def tearDown(self):
        """Close the h5 files before the next iteration."""
        self.s.f.close()
예제 #2
0
class SaveTests(unittest.TestCase):
    def setUp(self):
        self.s = Signal()
        self.x = np.array([0, 1, 2, 3])
        self.y = np.array([0, 1, 0, -1])
        self.s.load_nparray([0, 1, 0, -1], 'signal', 'm', 1)
        self.s.fft()
        self.s.freq_filter_Hilbert_complex()
        self.s.ifft()
        self.s.f.attrs['two'] = 2  # test attribute to verify attrs copied
        self.f_dst = h5py.File('.test2.h5', backing_store=False, driver='core')

    def test_save_pass_list_datasets(self):
        self.s.save(self.f_dst, ['x', 'y'])
        assert_array_equal(self.f_dst['x'][:], self.x)
        assert_array_equal(self.f_dst['y'][:], self.y)
        self.assertEqual(self.f_dst.attrs['two'], 2)

    def test_save_pass_string(self):
        self.s.save(self.f_dst, 'input')
        assert_array_equal(self.f_dst['x'][:], self.x[:])
        assert_array_equal(self.f_dst['y'][:], self.y)
        self.assertEqual(self.f_dst.attrs['two'], 2)

    def tearDown(self):
        self.f_dst.close()
        self.s.close()
예제 #3
0
class SaveTests(unittest.TestCase):
    def setUp(self):
        self.s = Signal()
        self.x = np.array([0, 1, 2, 3])
        self.y = np.array([0, 1, 0, -1])
        self.s.load_nparray([0, 1, 0, -1], 'signal', 'm', 1)
        self.s.fft()
        self.s.freq_filter_Hilbert_complex()
        self.s.ifft()
        self.s.f.attrs['two'] = 2  # test attribute to verify attrs copied
        self.f_dst = h5py.File('.test2.h5', backing_store=False, driver='core')

    def test_save_pass_list_datasets(self):
        self.s.save(self.f_dst, ['x', 'y'])
        assert_array_equal(self.f_dst['x'][:], self.x)
        assert_array_equal(self.f_dst['y'][:], self.y)
        self.assertEqual(self.f_dst.attrs['two'], 2)

    def test_save_pass_string(self):
        self.s.save(self.f_dst, 'input')
        assert_array_equal(self.f_dst['x'][:], self.x[:])
        assert_array_equal(self.f_dst['y'][:], self.y)
        self.assertEqual(self.f_dst.attrs['two'], 2)

    def tearDown(self):
        self.f_dst.close()
        self.s.close()
예제 #4
0
class FFTTests(unittest.TestCase):
    
    def setUp(self):
        """
        Create an trial *Signal* object
        """
        
        fd = 50.0E3    # digitization frequency
        f0 = 5.00E3    # signal frequency
        nt = 512     # number of signal points    

        self.dt = dt = 1/fd
        t = dt*np.arange(nt)
        s = 1.0*np.sin(2*np.pi*f0*t) 

        self.s = Signal('.FFTTests_1.h5')
        self.s.load_nparray(s,"x","nm",dt)
        self.s.time_mask_binarate("middle")
        self.s.time_window_cyclicize(10*dt)
        self.s.fft()
        self.s.freq_filter_Hilbert_complex()
        
    def testfft_1(self):
        """FFT: test that the resulting data is complex"""
        
        first_point = self.s.f['workup/freq/FT'][0]
        self.assertEqual(isinstance(first_point, complex),True)
        
    def testfft_2(self):
        """FFT: test that the complex Hilbert transform filter is real"""
        
        first_point = self.s.f['workup/freq/filter/Hc'][0]
        self.assertEqual(isinstance(first_point, complex),False)
        
    def testfft_3(self):
        """FFT: test the complex Hilbert transform filter near freq = 0"""
        
        freq = self.s.f['workup/freq/freq'][:]
        index = np.roll(freq == 0,-1) + np.roll(freq == 0,0) + np.roll(freq == 0,1)
        filt = self.s.f['workup/freq/filter/Hc'][index]
        
        self.assertTrue(np.allclose(filt,np.array([0, 1, 2])))

    def test_phase_fit_rounding(self):
        self.s.ifft()
        # T_chunk_goal set to cause problem due to incorrect rounding
        T_chunk_goal = self.dt*26
        self.s.fit_phase(T_chunk_goal)
                           
    def tearDown(self):
        """Close the h5 files before the next iteration."""
        try:
            self.s.f.close()
        except:
            pass                
예제 #5
0
class FFTTests(unittest.TestCase):
    def setUp(self):
        """
        Create an trial *Signal* object
        """

        fd = 50.0E3  # digitization frequency
        f0 = 5.00E3  # signal frequency
        nt = 512  # number of signal points

        self.dt = dt = 1 / fd
        t = dt * np.arange(nt)
        s = 1.0 * np.sin(2 * np.pi * f0 * t)

        self.s = Signal('.FFTTests_1.h5')
        self.s.load_nparray(s, "x", "nm", dt)
        self.s.time_mask_binarate("middle")
        self.s.time_window_cyclicize(10 * dt)
        self.s.fft()
        self.s.freq_filter_Hilbert_complex()

    def testfft_1(self):
        """FFT: test that the resulting data is complex"""

        first_point = self.s.f['workup/freq/FT'][0]
        self.assertEqual(isinstance(first_point, complex), True)

    def testfft_2(self):
        """FFT: test that the complex Hilbert transform filter is real"""

        first_point = self.s.f['workup/freq/filter/Hc'][0]
        self.assertEqual(isinstance(first_point, complex), False)

    def testfft_3(self):
        """FFT: test the complex Hilbert transform filter near freq = 0"""

        freq = self.s.f['workup/freq/freq'][:]
        index = np.roll(freq == 0, -1) + np.roll(freq == 0, 0) + np.roll(
            freq == 0, 1)
        filt = self.s.f['workup/freq/filter/Hc'][index]

        self.assertTrue(np.allclose(filt, np.array([0, 1, 2])))

    def test_phase_fit_rounding(self):
        self.s.ifft()
        # T_chunk_goal set to cause problem due to incorrect rounding
        T_chunk_goal = self.dt * 26
        self.s.fit_phase(T_chunk_goal)

    def tearDown(self):
        """Close the h5 files before the next iteration."""
        try:
            self.s.f.close()
        except:
            pass
예제 #6
0
class MaskTests(unittest.TestCase):
    def setUp(self):
        """
        Create a trial *Signal* object
        """

        self.s = Signal('.InitLoadSaveTests_1.h5')
        self.s.load_nparray(np.arange(60000), "x", "nm", 10E-6)

    def test_binarate_1(self):
        """Binarate mask middle; test length is 2^n"""

        self.s.time_mask_binarate("middle")
        m = self.s.f['workup/time/mask/binarate']

        self.assertEqual(np.count_nonzero(m), 32 * 1024)

    def test_binarate_2(self):
        """Binarate mask start; test length is 2^n"""

        self.s.time_mask_binarate("start")
        m = self.s.f['workup/time/mask/binarate']

        self.assertEqual(np.count_nonzero(m), 32 * 1024)

    def test_binarate_3(self):
        """Binarate mask end test length is 2^n"""

        self.s.time_mask_binarate("end")
        m = self.s.f['workup/time/mask/binarate']

        self.assertEqual(np.count_nonzero(m), 32 * 1024)

    def test_binarate_4(self):
        """If we have not called binarate, then workup/time/mask/binarate does not exist"""

        self.assertEqual(self.s.f.__contains__('workup/time/mask/binarate'),
                         False)

    def test_binarate_5(self):
        """If we have called binarate, then workup/time/mask/binarate does exist"""

        self.s.time_mask_binarate("middle")
        self.assertEqual(self.s.f.__contains__('workup/time/mask/binarate'),
                         True)

    def tearDown(self):
        """Close the h5 files before the next iteration."""
        try:
            self.s.f.close()
        except:
            pass
예제 #7
0
class MaskTests(unittest.TestCase):
    
    def setUp(self):
        """
        Create a trial *Signal* object
        """
        
        self.s = Signal('.InitLoadSaveTests_1.h5')
        self.s.load_nparray(np.arange(60000),"x","nm",10E-6)    
        
    def test_binarate_1(self):
        """Binarate mask middle; test length is 2^n"""
        
        self.s.time_mask_binarate("middle")
        m = self.s.f['workup/time/mask/binarate']

        self.assertEqual(np.count_nonzero(m),32*1024)    
        
    def test_binarate_2(self):
        """Binarate mask start; test length is 2^n"""
        
        self.s.time_mask_binarate("start")
        m = self.s.f['workup/time/mask/binarate']

        self.assertEqual(np.count_nonzero(m),32*1024)   
        
    def test_binarate_3(self):
        """Binarate mask end test length is 2^n"""
        
        self.s.time_mask_binarate("end")
        m = self.s.f['workup/time/mask/binarate']

        self.assertEqual(np.count_nonzero(m),32*1024)   
 
    def test_binarate_4(self):
        """If we have not called binarate, then workup/time/mask/binarate does not exist"""
        
        self.assertEqual(self.s.f.__contains__('workup/time/mask/binarate'),False)

    def test_binarate_5(self):
        """If we have called binarate, then workup/time/mask/binarate does exist"""
        
        self.s.time_mask_binarate("middle")
        self.assertEqual(self.s.f.__contains__('workup/time/mask/binarate'),True)  
   
    def tearDown(self):
        """Close the h5 files before the next iteration."""
        try:
            self.s.f.close()
        except:
            pass       
예제 #8
0
class SaveBeforeWorkupTest(unittest.TestCase):
    def setUp(self):
        self.s = Signal()
        self.x = np.array([0, 1, 2, 3])
        self.y = np.array([0, 1, 0, -1])
        self.s.load_nparray([0, 1, 0, -1], 'signal', 'm', 1)
        self.f_dst = h5py.File('.test3.h5', backing_store=False, driver='core')

    def test_save_before_workup(self):
        self.s.save(self.f_dst, 'time_workup')
        assert_array_equal(self.f_dst['x'][:], self.x)
        assert_array_equal(self.f_dst['y'][:], self.y)

    def tearDown(self):
        self.f_dst.close()
        self.s.close()
예제 #9
0
class SaveBeforeWorkupTest(unittest.TestCase):
    def setUp(self):
        self.s = Signal()
        self.x = np.array([0, 1, 2, 3])
        self.y = np.array([0, 1, 0, -1])
        self.s.load_nparray([0, 1, 0, -1], 'signal', 'm', 1)
        self.f_dst = h5py.File('.test3.h5', backing_store=False, driver='core')


    def test_save_before_workup(self):
        self.s.save(self.f_dst, 'time_workup')
        assert_array_equal(self.f_dst['x'][:], self.x)
        assert_array_equal(self.f_dst['y'][:], self.y)

    def tearDown(self):
        self.f_dst.close()
        self.s.close()
예제 #10
0
class FFTOddPoints(unittest.TestCase):
    def setUp(self):
        self.x = np.array([0, 1, 0, -1, 0, 1, 0, -1, 0])
        self.s = Signal()
        self.s.load_nparray(self.x, 'x', 'nm', 1)

    def test_ifft_odd_pts(self):
        self.s.fft()
        self.s.ifft()
        x_ifft_fft = self.s.f['workup/time/z'][:]
        x = self.x
        # Should give x back to within numerical rounding errors
        assert_allclose(x.real, x_ifft_fft.real, atol=1e-15)
        assert_allclose(x.imag, x_ifft_fft.imag, atol=1e-15)

    def tearDown(self):
        self.s.close()
예제 #11
0
class FFTOddPoints(unittest.TestCase):
    def setUp(self):
        self.x = np.array([0, 1, 0, -1, 0, 1, 0, -1, 0])
        self.s = Signal()
        self.s.load_nparray(self.x, 'x', 'nm', 1)

    def test_ifft_odd_pts(self):
        self.s.fft()
        self.s.ifft()
        x_ifft_fft = self.s.f['workup/time/z'][:]
        x = self.x
        # Should give x back to within numerical rounding errors
        assert_allclose(x.real, x_ifft_fft.real, atol=1e-15)
        assert_allclose(x.imag, x_ifft_fft.imag, atol=1e-15)

    def tearDown(self):
        self.s.close()
예제 #12
0
class InitLoadSaveTests(unittest.TestCase):
    """
    Make sure the *Signal* object is set up correctly.
    """
    filename = '.InitLoadSaveTests_1.h5'

    def setUp(self):
        """
        Create an trial *Signal* object
        """

        self.s = Signal(self.filename)
        self.s.load_nparray(np.arange(3), "x", "nm", 10E-6)

    def test_report(self):
        """Initialize Signal object"""

        self.assertEqual(
            self.s.report[0],
            'HDF5 file .InitLoadSaveTests_1.h5 created in core memory')

    def test_x(self):
        """Check x-array data."""

        self.assertTrue(
            np.allclose(self.s.f['x'],
                        10E-6 * np.array([0, 1, 2]),
                        rtol=1e-05,
                        atol=1e-08))

    def test_y(self):
        """Check y-array data."""

        self.assertTrue(
            np.allclose(self.s.f['y'],
                        np.array([0, 1, 2]),
                        rtol=1e-05,
                        atol=1e-08))

    def tearDown(self):
        """Close the h5 files before the next iteration."""
        self.s.f.close()
예제 #13
0
class TestClose(unittest.TestCase):
    filename = '.TestClose.h5'

    def setUp(self):
        self.s = Signal(self.filename, mode='w', backing_store=True)
        self.s.load_nparray(np.arange(3), "x", "nm", 10E-6)
        self.s.close()

    def tearDown(self):
        silent_remove(self.filename)

    def test_close(self):
        """Verify closed object by testing one of the attributes"""

        self.snew = Signal()
        self.snew.open(self.filename)

        # print out the contents of the file nicely

        report = []

        for key, val in self.snew.f.attrs.items():
            report.append("{0}: {1}".format(key, val))

        for item in self.snew.f:

            report.append("{}".format(self.snew.f[item].name))
            for key, val in self.snew.f[item].attrs.items():
                report.append("    {0}: {1}".format(key, val))

        report_string = "\n".join(report)

        print("\nObjects in file .InitLoadSaveTests_1.h5")
        print(report_string)

        # test one of the attributes

        self.assertTrue(self.snew.f.attrs['source'], 'demodulate.py')
        self.snew.close()
예제 #14
0
class TestClose(unittest.TestCase):
    filename = '.TestClose.h5'
    def setUp(self):
        self.s = Signal(self.filename,  mode='w', backing_store=True)
        self.s.load_nparray(np.arange(3),"x","nm",10E-6)
        self.s.close()

    def tearDown(self):
        silent_remove(self.filename)

    def test_close(self):
        """Verify closed object by testing one of the attributes"""
        
        self.snew = Signal()
        self.snew.open(self.filename)
        
        # print out the contents of the file nicely        
                                
        report = []
        
        for key, val in self.snew.f.attrs.items():
            report.append("{0}: {1}".format(key, val))
        
        for item in self.snew.f:
            
            report.append("{}".format(self.snew.f[item].name))
            for key, val in self.snew.f[item].attrs.items():
                report.append("    {0}: {1}".format(key, val))
        
        report_string = "\n".join(report)
        
        print("\nObjects in file .InitLoadSaveTests_1.h5")
        print(report_string)

        # test one of the attributes

        self.assertTrue(self.snew.f.attrs['source'],'demodulate.py')
        self.snew.close()