1 | ### Removing atoms inside sphere
|
---|
2 |
|
---|
3 | AT_SETUP([Atoms - Removing sphere of atoms with Undo/Redo])
|
---|
4 | AT_KEYWORDS([atoms])
|
---|
5 |
|
---|
6 | file=test-withoutsphere.xyz
|
---|
7 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Atoms/RemoveInsideSphere/pre/test.xyz $file], 0)
|
---|
8 | AT_CHECK([chmod u+w $file], 0)
|
---|
9 | AT_CHECK([../../molecuilder -i $file --select-atoms-inside-sphere 7. --position "7.283585982, 3.275186040, 3.535886037" --angle-x 0. --angle-y 0. --angle-z 0. -r], 0, [stdout], [stderr])
|
---|
10 | AT_CHECK([sort -n $file | grep -v -E "^[[[:digit:]]]+" | grep -v "Created by" >test-withoutsphere.xyz-sorted], 0, [ignore], [ignore])
|
---|
11 | AT_CHECK([file=test-withoutsphere.xyz-sorted; diff $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Atoms/RemoveInsideSphere/post/test-withoutsphere.xyz-sorted], 0, [ignore], [ignore])
|
---|
12 |
|
---|
13 | file=test-sphere.xyz
|
---|
14 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Atoms/RemoveInsideSphere/pre/test.xyz $file], 0)
|
---|
15 | AT_CHECK([chmod u+w $file], 0)
|
---|
16 | AT_CHECK([../../molecuilder -i $file --select-all-atoms --unselect-atoms-inside-sphere 7. --position "7.283585982, 3.275186040, 3.535886037" --angle-x 0. --angle-y 0. --angle-z 0. -r], 0, [stdout], [stderr])
|
---|
17 | AT_CHECK([sort -n $file | grep -v -E "^[[[:digit:]]]+" | grep -v "Created by" >test-sphere.xyz-sorted], 0, [ignore], [ignore])
|
---|
18 | AT_CHECK([file=test-sphere.xyz-sorted; diff $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Atoms/RemoveInsideSphere/post/test-sphere.xyz-sorted], 0, [ignore], [ignore])
|
---|
19 | AT_CHECK([cat test-sphere.xyz-sorted test-withoutsphere.xyz-sorted | sort -n >test.xyz-sorted], 0, [ignore], [ignore])
|
---|
20 | AT_CHECK([file=test.xyz-sorted; diff $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Atoms/RemoveInsideSphere/post/test.xyz-sorted], 0, [ignore], [ignore])
|
---|
21 |
|
---|
22 | file=test.xyz
|
---|
23 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Atoms/RemoveInsideSphere/pre/test.xyz $file], 0)
|
---|
24 | AT_CHECK([chmod u+w $file], 0)
|
---|
25 | AT_CHECK([../../molecuilder -i $file --select-atoms-inside-sphere 7. --position "7.283585982, 3.275186040, 3.535886037" --angle-x 0. --angle-y 0. --angle-z 0. -r --undo], 0, [stdout], [stderr])
|
---|
26 | AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Atoms/RemoveInsideSphere/pre/$file], 0, [ignore], [ignore])
|
---|
27 |
|
---|
28 | file=test-withoutsphere.xyz
|
---|
29 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Atoms/RemoveInsideSphere/pre/test.xyz $file], 0)
|
---|
30 | AT_CHECK([chmod u+w $file], 0)
|
---|
31 | AT_CHECK([../../molecuilder -i $file --select-atoms-inside-sphere 7. --position "7.283585982, 3.275186040, 3.535886037" --angle-x 0. --angle-y 0. --angle-z 0. -r --undo --redo], 0, [stdout], [stderr])
|
---|
32 | AT_CHECK([sort -n $file | grep -v -E "^[[[:digit:]]]+" | grep -v "Created by" >test-withoutsphere.xyz-sorted], 0, [ignore], [ignore])
|
---|
33 | AT_CHECK([file=test-withoutsphere.xyz-sorted; diff $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Atoms/RemoveInsideSphere/post/test-withoutsphere.xyz-sorted], 0, [ignore], [ignore])
|
---|
34 |
|
---|
35 | file=test.xyz
|
---|
36 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Atoms/RemoveInsideSphere/pre/test.xyz $file], 0)
|
---|
37 | AT_CHECK([chmod u+w $file], 0)
|
---|
38 | AT_CHECK([../../molecuilder -i $file --select-all-atoms --unselect-atoms-inside-sphere 7. --position "7.283585982, 3.275186040, 3.535886037" --angle-x 0. --angle-y 0. --angle-z 0. -r --undo], 0, [stdout], [stderr])
|
---|
39 | AT_CHECK([diff -I '.*Created by molecuilder.*' $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Atoms/RemoveInsideSphere/pre/$file], 0, [ignore], [ignore])
|
---|
40 |
|
---|
41 | file=test-sphere.xyz
|
---|
42 | AT_CHECK([/bin/cp -f ${abs_top_srcdir}/${AUTOTEST_PATH}/Atoms/RemoveInsideSphere/pre/test.xyz $file], 0)
|
---|
43 | AT_CHECK([chmod u+w $file], 0)
|
---|
44 | AT_CHECK([../../molecuilder -i $file --select-all-atoms --unselect-atoms-inside-sphere 7. --position "7.283585982, 3.275186040, 3.535886037" --angle-x 0. --angle-y 0. --angle-z 0. -r --undo --redo], 0, [stdout], [stderr])
|
---|
45 | AT_CHECK([sort -n $file | grep -v -E "^[[[:digit:]]]+" | grep -v "Created by" >test-sphere.xyz-sorted], 0, [ignore], [ignore])
|
---|
46 | AT_CHECK([file=test-sphere.xyz-sorted; diff $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Atoms/RemoveInsideSphere/post/test-sphere.xyz-sorted], 0, [ignore], [ignore])
|
---|
47 | AT_CHECK([cat test-sphere.xyz-sorted test-withoutsphere.xyz-sorted | sort -n >test.xyz-sorted], 0, [ignore], [ignore])
|
---|
48 | AT_CHECK([file=test.xyz-sorted; diff $file ${abs_top_srcdir}/${AUTOTEST_PATH}/Atoms/RemoveInsideSphere/post/test.xyz-sorted], 0, [ignore], [ignore])
|
---|
49 |
|
---|
50 | AT_CLEANUP
|
---|