Merged -r7723:7729 from jcorgan/wav into trunk, with added example program. Adds...
[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     def test_002_checkwavcopy (self):
41         infile  = "test_16bit_1chunk.wav"
42         outfile = "test_out.wav"
43
44         wf_in  = gr.wavfile_source(infile)
45         wf_out = gr.wavfile_sink(outfile,
46                                  wf_in.channels(),
47                                  wf_in.sample_rate(),
48                                  wf_in.bits_per_sample())
49         self.tb.connect(wf_in, wf_out)
50         self.tb.run()
51         wf_out.close()
52
53         self.assertEqual(getsize(infile), getsize(outfile))
54
55         in_f  = file(infile,  'rb')
56         out_f = file(outfile, 'rb')
57
58         in_data  = in_f.read(getsize(infile))
59         out_data = out_f.read(getsize(outfile))
60         os.remove(outfile)
61         
62         self.assertEqual(in_data, out_data)
63
64
65 if __name__ == '__main__':
66     gr_unittest.main ()