Don't assume you know which sJPK egments will be created.
[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.Scanner list.Serial n*"'
35 ...                     % file_name]) # doctest: +ELLIPSIS, +REPORT_UDIFF
36 {'columns': ['z piezo (m)', 'deflection (m)'],
37  'index': 0,
38  'name': 'approach',
39  'raw info': {'Scanner list': {'Serial number': '196PF'}}}
40 Success
41 <BLANKLINE>
42 >>> with open(file_name, 'r') as f:
43 ...     text = f.read()
44 >>> if block_info_already_exists == False:
45 ...    os.remove(file_name)
46 >>> print text  # doctest: +ELLIPSIS, +REPORT_UDIFF
47 picoforce.000:
48   approach:
49     columns: [z piezo (m), deflection (m)]
50     index: 0
51     name: approach
52     raw info:
53       Scanner list: {Serial number: 196PF}
54   path: .../test/data/picoforce.000
55 <BLANKLINE>
56 """