Added 'block info' to retrieve and export portions of Curve.data[*].info.
[hooke.git] / test / block_info.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 modify it
6 # under the terms of the GNU Lesser General Public License as
7 # published by the Free Software Foundation, either version 3 of the
8 # License, or (at your option) any later version.
9 #
10 # Hooke is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
13 # 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
21 >>> from uuid import uuid4
22 >>> from hooke.hooke import Hooke, HookeRunner
23 >>> h = Hooke()
24 >>> r = HookeRunner()
25 >>> h = r.run_lines(h, ['load_playlist test/data/test']) # doctest: +ELLIPSIS
26 <FilePlaylist test.hkp>
27 Success
28 <BLANKLINE>
29
30 >>> file_name = '%s.block' % uuid4()
31 >>> block_info_already_exists = os.path.exists(file_name)
32 >>> block_info_already_exists
33 False
34 >>> h = r.run_lines(h, ['block_info --output %s name columns "raw info.file*"'
35 ...                     % file_name]) # doctest: +ELLIPSIS, +REPORT_UDIFF
36 {'index': 0, 'name': 'approach', 'columns': ['z piezo (m)', 'deflection (m)'], 'raw info': {'filetype': 'picoforce'}}
37 Success
38 <BLANKLINE>
39 >>> with open(file_name, 'r') as f:
40 ...     text = f.read()
41 >>> if block_info_already_exists == False:
42 ...    os.remove(file_name)
43 >>> print text
44 picoforce.000:
45   approach:
46     columns: [z piezo (m), deflection (m)]
47     index: 0
48     name: approach
49     raw info: {filetype: picoforce}
50   path: /tmp/hooke/test/data/picoforce.000
51 <BLANKLINE>
52 """