]> git.gag.com Git - debian/gnuradio/blob - gnuradio-core/src/python/gnuradio/gr/qa_wavefile.py
disabled test_002_checkwavcopy, fails on PPC
[debian/gnuradio] / gnuradio-core / src / python / gnuradio / gr / qa_wavefile.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2008 Free Software Foundation, Inc.
4
5 # This file is part of GNU Radio
6
7 # GNU Radio is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3, or (at your option)
10 # any later version.
11
12 # GNU Radio is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Radio; see the file COPYING.  If not, write to
19 # the Free Software Foundation, Inc., 51 Franklin Street,
20 # Boston, MA 02110-1301, USA.
21
22
23 from gnuradio import gr, gr_unittest
24
25 import os
26 from os.path import getsize
27
28 class qa_wavefile(gr_unittest.TestCase):
29
30     def setUp (self):
31         self.tb = gr.top_block ()
32
33     def tearDown (self):
34         self.tb = None
35
36     def test_001_checkwavread (self):
37         wf = gr.wavfile_source("./test_16bit_1chunk.wav")
38         self.assertEqual(wf.sample_rate(), 8000)
39
40     # disabled.  Fails on PPC
41     def xtest_002_checkwavcopy (self):
42         infile  = "test_16bit_1chunk.wav"
43         outfile = "test_out.wav"
44
45         wf_in  = gr.wavfile_source(infile)
46         wf_out = gr.wavfile_sink(outfile,
47                                  wf_in.channels(),
48                                  wf_in.sample_rate(),
49                                  wf_in.bits_per_sample())
50         self.tb.connect(wf_in, wf_out)
51         self.tb.run()
52         wf_out.close()
53
54         self.assertEqual(getsize(infile), getsize(outfile))
55
56         in_f  = file(infile,  'rb')
57         out_f = file(outfile, 'rb')
58
59         in_data  = in_f.read(getsize(infile))
60         out_data = out_f.read(getsize(outfile))
61         os.remove(outfile)
62         
63         self.assertEqual(in_data, out_data)
64
65
66 if __name__ == '__main__':
67     gr_unittest.main ()