Transition from v0.1 XML playlists to v0.2 YAML playlists.
[hooke.git] / test / config.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 Test the commands listed in :file:`doc/tutorial.txt`.
21
22 >>> import os
23 >>> import os.path
24 >>> from uuid import uuid4
25 >>> from hooke.hooke import Hooke, HookeRunner
26 >>> h = Hooke()
27 >>> r = HookeRunner()
28 >>> h = r.run_lines(h, ['set_config conditions temperature 300.0'])
29 Success
30 <BLANKLINE>
31 >>> h = r.run_lines(h, ['get_config conditions temperature'])
32 300.0
33 Success
34 <BLANKLINE>
35 >>> h = r.run_lines(h, ['set_config conditions temperature 295.3'])
36 Success
37 <BLANKLINE>
38 >>> h = r.run_lines(h, ['get_config conditions temperature'])
39 295.3
40 Success
41 <BLANKLINE>
42 >>> h = r.run_lines(h, ['print_config'])  # doctest: +ELLIPSIS
43 # Default environmental conditions in case they are not specified in
44 # the force curve data.  Configuration options in this section are
45 # available to every plugin.
46 [conditions]
47 # Temperature in Kelvin
48 temperature = 295.3
49 <BLANKLINE>
50 ...
51 >>> file_name = '%s.cfg' % uuid4()
52 >>> config_already_exists = os.path.exists(file_name)
53 >>> config_already_exists
54 False
55 >>> h = r.run_lines(h, ['save_config --output %s' % file_name])
56 Success
57 <BLANKLINE>
58 >>> os.path.isfile(file_name)
59 True
60 >>> if config_already_exists == False:
61 ...     os.remove(file_name)
62 """