1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
#!/bin/sh
# test Open Babel with CML
# Make sure we know the absolute path of the programs we're trying to
# call, in case the test is called from somewhere else
unset BABEL_LIBDIR
if `env | grep ^builddir > /dev/null 2>&1`; then
BABEL=$builddir/../tools/babel
BABEL_LIBDIR="$builddir/../src/formats/.libs:$builddir/../src/formats/xml/.libs"
export BABEL_LIBDIR
else
builddir=..
BABEL=../../tools/babel
BABEL_LIBDIR="../../src/formats/.libs:../../src/formats/xml/.libs"
export BABEL_LIBDIR
fi
# check to see if we have CML support or bail!
cmltest=`${BABEL} -Hcml | grep "not recognized"`
if [ "x${cmltest}" != "x" ]; then
echo "1..0 # skipping - CML format not loaded"
exit
fi
ROUNDTRIP=${builddir}/roundtrip
# test input
# CML2 with array
echo "1..6"
echo "# CML2 with array"
if (${BABEL} -icml cs2a.cml -omdl cs2a.mol && ${ROUNDTRIP} cs2a.cml cs2a.mol) then
echo "ok 1"
else
echo "not ok 1"
fi
# 3D molecules in SDF
# CML2 with XML version
echo "# CML2 with XML version"
if (${BABEL} -isdf 3d.head.sdf -ocml 3d.head.2.cml -x2v && ${ROUNDTRIP} 3d.head.sdf 3d.head.2.cml) then
echo "ok 2"
else
echo "not ok 2"
fi
# CML1 with DOCTYPE
echo "# CML1 with DOCTYPE"
if (${BABEL} -isdf cs2a.mol -ocml cs2a.mol.cml -x1d && ${ROUNDTRIP} cs2a.mol cs2a.mol.cml); then
echo "ok 3"
else
echo "not ok 3"
fi
# CML2 arrays with namespaces (large)
echo "# CML2 arrays with namespaces"
# PR#1486678
if (${BABEL} -isdf 3d.head.sdf -ocml 3d.head.2an.cml -x2an && ${ROUNDTRIP} 3d.head.sdf 3d.head.2an.cml); then
echo "ok 4"
else
echo "not ok 4"
fi
# roundtripping; arguments are fileroot; input format; input suffix
# 2d MDL to CML and back again through all main variants
echo "# Roundtripping from 2D MDL Molfile to CML and back"
if ./cycleformats.sh nsc2dmol mol mdl; then
echo "ok 5"
else
echo "not ok 5"
fi
# 3d MDL to CML and back again through all main variants
echo "# Roundtripping from 3D MDL Molfile to CML and back"
if ./cycleformats.sh nsc3dmol mol mdl; then
echo "ok 6"
else
echo "not ok 6"
fi
|