Broke config section of test/tutorial.py out into test/config.py
[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 hooke.hooke import Hooke, HookeRunner
25 >>> h = Hooke()
26 >>> r = HookeRunner()
27 >>> h = r.run_lines(h, ['set_config conditions temperature 300.0'])
28 Success
29 <BLANKLINE>
30 >>> h = r.run_lines(h, ['get_config conditions temperature'])
31 300.0
32 Success
33 <BLANKLINE>
34 >>> h = r.run_lines(h, ['set_config conditions temperature 295.3'])
35 Success
36 <BLANKLINE>
37 >>> h = r.run_lines(h, ['get_config conditions temperature'])
38 295.3
39 Success
40 <BLANKLINE>
41 >>> h = r.run_lines(h, ['print_config'])  # doctest: +ELLIPSIS
42 # Default environmental conditions in case they are not specified in
43 # the force curve data.  Configuration options in this section are
44 # available to every plugin.
45 [conditions]
46 # Temperature in Kelvin
47 temperature = 295.3
48 <BLANKLINE>
49 ...
50 >>> config_already_exists = os.path.exists('myconfig.cfg')
51 >>> config_already_exists
52 False
53 >>> h = r.run_lines(h, ['save_config --output myconfig.cfg'])
54 Success
55 <BLANKLINE>
56 >>> os.path.isfile('myconfig.cfg')
57 True
58 >>> if config_already_exists == False:
59 ...     os.remove('myconfig.cfg')
60 """