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
|
#!/usr/bin/env bash
# Copyright 2012 Red Hat Inc., Durham, North Carolina.
# All Rights Reserved.
#
# OpenScap XCCDF Module Test Suite.
#
# Authors:
# Peter Vrabec <pvrabec@redhat.com>
set -e -o pipefail
. $builddir/tests/test_common.sh
# Test cases.
function test_api_xccdf_export {
local INPUT=$srcdir/$1
local OUTPUT=$1.out
./test_api_xccdf --export $INPUT $OUTPUT
# Workaround libxml2 on rhel5 which exports namespace declarations in different order.
xsed -i 's|<cpe-list xmlns="http://cpe.mitre.org/XMLSchema/cpe/1.0" xmlns:meta="http://scap.nist.gov/schema/cpe-dictionary-metadata/0.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"|<cpe-list xmlns:meta="http://scap.nist.gov/schema/cpe-dictionary-metadata/0.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://cpe.mitre.org/XMLSchema/cpe/1.0"|' $OUTPUT
if [ $? -eq 0 ]; then
if ! $XMLDIFF $INPUT $OUTPUT; then
echo "Exported file differs from what is expected!"
return 1
fi
else
echo "Cannot export xccdf content!"
return 1
fi
rm $OUTPUT
return 0
}
function test_api_xccdf_validate {
local INPUT=$1
local VER=$2
bash $builddir/run ./test_api_xccdf --validate $VER $srcdir/$INPUT
return $([ $? -eq 0 ])
}
# Testing.
test_init
if [ -z ${CUSTOM_OSCAP+x} ] ; then
test_run "export xccdf 1.1" test_api_xccdf_export xccdf11.xml
test_run "validate xccdf 1.1" test_api_xccdf_validate xccdf11.xml "1.1"
test_run "export xccdf 1.2" test_api_xccdf_export xccdf12.xml
test_run "validate xccdf 1.2" test_api_xccdf_validate xccdf12.xml "1.2"
test_run "export xccdf results 1.1" test_api_xccdf_export xccdf11-results.xml
fi
test_exit
|