Added calibration file support to the JPK driver.
[hooke.git] / test / jpk_driver.py
1 # Copyright (C) 2010 W. Trevor King <wking@drexel.edu>
2 #
3 # This file is part of Hooke.
4 #
5 # Hooke is free software: you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation, either
8 # version 3 of the License, or (at your option) any later version.
9 #
10 # Hooke is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with Hooke.  If not, see
17 # <http://www.gnu.org/licenses/>.
18
19 """
20 >>> import os.path
21 >>> from hooke.hooke import Hooke, HookeRunner
22 >>> h = Hooke()
23 >>> r = HookeRunner()
24 >>> playlist = os.path.join('test', 'data', 'vclamp_jpk', 'playlist')
25 >>> h = r.run_lines(h, ['load_playlist ' + playlist]) # doctest: +ELLIPSIS
26 <FilePlaylist playlist.hkp>
27 Success
28 <BLANKLINE>
29 >>> h = r.run_lines(h, ['curve_info']) # doctest: +ELLIPSIS, +REPORT_UDIFF
30 name: 2009.04.23-15.15.47.jpk
31 path: test/data/vclamp_jpk/2009.04.23-15.15.47.jpk
32 experiment: None
33 driver: <hooke.driver.jpk.JPKDriver object at 0x...>
34 filetype: None
35 note: 
36 blocks: 2
37 block sizes: [(4096, 6), (4096, 4)]
38 Success
39 <BLANKLINE>
40
41 Load the second curve, to test calibration file overriding.
42
43 >>> h = r.run_lines(h, ['next_curve'])
44 Success
45 <BLANKLINE>
46 >>> h = r.run_lines(h, ['curve_info']) # doctest: +ELLIPSIS, +REPORT_UDIFF
47 name: 2009.04.23-15.21.39.jpk
48 path: test/data/vclamp_jpk/2009.04.23-15.21.39.jpk
49 experiment: None
50 driver: <hooke.driver.jpk.JPKDriver object at 0x...>
51 filetype: None
52 note: 
53 blocks: 3
54 block sizes: [(4096, 6), (2048, 3), (4096, 4)]
55 Success
56 <BLANKLINE>
57 """