1 | #
|
---|
2 | # MoleCuilder - creates and alters molecular systems
|
---|
3 | # Copyright (C) 2008-2012 University of Bonn
|
---|
4 | #
|
---|
5 | # This program is free software: you can redistribute it and/or modify
|
---|
6 | # it under the terms of the GNU General Public License as published by
|
---|
7 | # the Free Software Foundation, either version 3 of the License, or
|
---|
8 | # (at your option) any later version.
|
---|
9 | #
|
---|
10 | # This program is distributed in the hope that it will be useful,
|
---|
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
13 | # GNU General Public License for more details.
|
---|
14 | #
|
---|
15 | # You should have received a copy of the GNU General Public License
|
---|
16 | # along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
17 | #
|
---|
18 | ### copy molecule
|
---|
19 |
|
---|
20 | AT_SETUP([Molecules - Copy molecule])
|
---|
21 | AT_KEYWORDS([molecules copy-molecule])
|
---|
22 |
|
---|
23 | file=test-copy.xyz
|
---|
24 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/test.xyz $file], 0)
|
---|
25 | AT_CHECK([chmod u+w $file], 0)
|
---|
26 | AT_CHECK([../../molecuilder -i $file --select-molecule-by-id 0 --copy-molecule --position "0,0,10"], 0, [stdout], [stderr])
|
---|
27 | AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Molecules/Copy/post/test-copy.xyz], 0, [ignore], [ignore])
|
---|
28 |
|
---|
29 | file=tensid.data
|
---|
30 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/tensid.data $file], 0)
|
---|
31 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/tensid.potentials .], 0)
|
---|
32 | AT_CHECK([chmod u+w $file], 0)
|
---|
33 | AT_CHECK([../../molecuilder --parse-particle-parameters tensid.potentials -i $file --select-molecule-by-id 0 --copy-molecule --position "0,0,10"], 0, [stdout], [stderr])
|
---|
34 | AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Molecules/Copy/post/tensid.data], 0, [ignore], [ignore])
|
---|
35 |
|
---|
36 | AT_CLEANUP
|
---|
37 |
|
---|
38 |
|
---|
39 | AT_SETUP([Molecules - Copy molecule with Undo])
|
---|
40 | AT_KEYWORDS([molecules copy-molecule undo])
|
---|
41 |
|
---|
42 | file=test-copy.xyz
|
---|
43 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/test.xyz $file], 0)
|
---|
44 | AT_CHECK([chmod u+w $file], 0)
|
---|
45 | AT_CHECK([../../molecuilder -i $file --select-molecule-by-id 0 --copy-molecule --position "0,0,10" --undo], 0, [stdout], [stderr])
|
---|
46 | AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Molecules/Copy/post/test-undo.xyz], 0, [ignore], [ignore])
|
---|
47 |
|
---|
48 | file=tensid.data
|
---|
49 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/tensid.data $file], 0)
|
---|
50 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/tensid.potentials .], 0)
|
---|
51 | AT_CHECK([chmod u+w $file], 0)
|
---|
52 | AT_CHECK([../../molecuilder --parse-particle-parameters tensid.potentials -i $file --select-molecule-by-id 0 --copy-molecule --position "0,0,10" --undo], 0, [stdout], [stderr])
|
---|
53 | AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/tensid.data], 0, [ignore], [ignore])
|
---|
54 |
|
---|
55 | AT_CLEANUP
|
---|
56 |
|
---|
57 |
|
---|
58 | AT_SETUP([Molecules - Copy molecule with Redo])
|
---|
59 | AT_KEYWORDS([molecules copy-molecule redo])
|
---|
60 |
|
---|
61 | file=test-copy.xyz
|
---|
62 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/test.xyz $file], 0)
|
---|
63 | AT_CHECK([chmod u+w $file], 0)
|
---|
64 | AT_CHECK([../../molecuilder -i $file --select-molecule-by-id 0 --copy-molecule --position "0,0,10" --undo --redo], 0, [stdout], [stderr])
|
---|
65 | AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Molecules/Copy/post/test-copy.xyz], 0, [ignore], [ignore])
|
---|
66 |
|
---|
67 | file=tensid.data
|
---|
68 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/tensid.data $file], 0)
|
---|
69 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/tests/regression/Molecules/Copy/pre/tensid.potentials .], 0)
|
---|
70 | AT_CHECK([chmod u+w $file], 0)
|
---|
71 | AT_CHECK([../../molecuilder --parse-particle-parameters tensid.potentials -i $file --select-molecule-by-id 0 --copy-molecule --position "0,0,10" --undo --redo], 0, [stdout], [stderr])
|
---|
72 | AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/tests/regression/Molecules/Copy/post/tensid.data], 0, [ignore], [ignore])
|
---|
73 |
|
---|
74 | AT_CLEANUP
|
---|