Ran update-copyright.py
[hooke.git] / test / config.py
1 # Copyright (C) 2010-2012 W. Trevor King <wking@tremily.us>
2 #
3 # This file is part of Hooke.
4 #
5 # Hooke is free software: you can redistribute it and/or modify it under the
6 # terms of the GNU Lesser General Public License as published by the Free
7 # Software Foundation, either version 3 of the License, or (at your option) any
8 # later version.
9 #
10 # Hooke is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
13 # details.
14 #
15 # You should have received a copy of the GNU Lesser General Public License
16 # along with Hooke.  If not, see <http://www.gnu.org/licenses/>.
17
18 """
19 Test the commands listed in :file:`doc/tutorial.txt`.
20
21 >>> import os
22 >>> import os.path
23 >>> from uuid import uuid4
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 >>> file_name = '%s.cfg' % uuid4()
51 >>> config_already_exists = os.path.exists(file_name)
52 >>> config_already_exists
53 False
54 >>> h = r.run_lines(h, ['save_config --output %s' % file_name])
55 Success
56 <BLANKLINE>
57 >>> os.path.isfile(file_name)
58 True
59 >>> if config_already_exists == False:
60 ...     os.remove(file_name)
61 """