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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
|
#!/usr/bin/env bash
# Author:
# Martin Preisler <mpreisle@redhat.com>
set -e -o pipefail
. $builddir/tests/test_common.sh
. $srcdir/test_ds_common.sh
# Test Cases.
function test_eval {
probecheck "rpminfo" || return 255
[ -e "/var/lib/rpm" ] || return 255
local stderr=$(mktemp -t ${name}.out.XXXXXX)
$OSCAP xccdf eval "${srcdir}/$1" 2> $stderr
diff /dev/null $stderr; rm $stderr
}
function test_eval_cpe {
local stdout=$(mktemp -t ${name}.out.XXXXXX)
local stderr=$(mktemp -t ${name}.err.XXXXXX)
local ret=0
$OSCAP xccdf eval --progress "${srcdir}/$1" 1> $stdout 2> $stderr || ret=$?
grep -q "rule_applicable_pass:pass" $stdout
grep -q "rule_applicable_fail:fail" $stdout
grep -q "rule_notapplicable:notapplicable" $stdout
diff /dev/null $stderr
rm $stdout $stderr
}
function test_invalid_eval {
local ret=0
$OSCAP xccdf eval "${srcdir}/$1" || ret=$?
return $([ $ret -eq 1 ])
}
function test_invalid_oval_eval {
local ret=0
$OSCAP oval eval "${srcdir}/$1" || ret=$?
return $([ $ret -eq 1 ])
}
function test_eval_id {
OUT=$($OSCAP xccdf eval --datastream-id $2 --xccdf-id $3 "${srcdir}/$1")
local RET=$?
if [ $RET -ne 0 ]; then
return 1
fi
echo "$OUT" | grep $4 > /dev/null
}
function test_eval_benchmark_id {
OUT=$($OSCAP xccdf eval --benchmark-id $2 "${srcdir}/$1")
local RET=$?
if [ $RET -ne 0 ]; then
return 1
fi
echo "$OUT" | grep $3 > /dev/null
}
function test_eval_complex()
{
local name=${FUNCNAME}
local arf=$(mktemp -t ${name}.arf.XXXXXX)
local stderr=$(mktemp -t ${name}.err.XXXXXX)
local stdout=$(mktemp -t ${name}.out.XXXXXX)
$OSCAP xccdf eval \
--results-arf $arf \
--datastream-id scap_org.open-scap_datastream_tst2 \
--xccdf-id scap_org.open-scap_cref_second-xccdf.xml2 \
--profile xccdf_moc.elpmaxe.www_profile_2 \
$srcdir/eval_xccdf_id/sds-complex.xml 2> $stderr > $stdout
# Ensure the sanity of the output.
[ -f $stderr ]; [ ! -s $stderr ]
[ "`grep ^Rule $stdout | wc -l`" == "1" ]
grep ^Rule $stdout | grep xccdf_moc.elpmaxe.www_rule_secon
rm $stdout
# Ensure basic correctness of the ARF
$OSCAP ds rds-validate $arf 2>&1 > $stderr
[ -f $srderr ]; [ ! -s $stderr ]; rm $stderr
assert_correct_xlinks $arf
# Ensure that results are there
local result="$arf"
assert_exists 1 '//rule-result'
assert_exists 1 '//rule-result[@idref="xccdf_moc.elpmaxe.www_rule_second"]'
assert_exists 1 '//rule-result/result'
assert_exists 1 '//rule-result/result[text()="pass"]'
assert_exists 1 '//TestResult/benchmark[@href="#scap_org.open-scap_comp_second-xccdf.xml2"]'
rm $arf
}
function test_oval_eval {
$OSCAP oval eval "${srcdir}/$1"
}
function test_oval_eval_id {
OUT=$($OSCAP oval eval --datastream-id $2 --oval-id $3 "${srcdir}/$1")
local RET=$?
if [ $RET -ne 0 ]; then
return 1
fi
echo "out: $OUT"
echo "$OUT" | grep $4 > /dev/null
}
function test_sds_external_xccdf_in_ds {
local SDS_FILE="${srcdir}/sds_external_xccdf/sds.ds.xml"
local XCCDF="scap_org.open-scap_cref_xccdf.xml"
local PROFILE="xccdf_external_profile_datastream_1"
local result="$(mktemp)"
$OSCAP xccdf eval --xccdf-id "$XCCDF" --profile "$PROFILE" --results-arf "$result" "$SDS_FILE"
assert_exists 1 '//rule-result/result[text()="pass"]'
assert_exists 1 '//TestResult/benchmark[@href="file:xccdf.sds.xml#scap_1_comp_xccdf.xml"]'
rm -f "$result"
}
function test_sds_external_xccdf {
local SDS_FILE="${srcdir}/sds_external_xccdf/sds.ds.xml"
local XCCDF="scap_org.open-scap_cref_xccdf-file.xml"
local PROFILE="xccdf_external_profile_file_1"
local result="$(mktemp)"
$OSCAP xccdf eval --xccdf-id "$XCCDF" --profile "$PROFILE" --results-arf "$result" "$SDS_FILE"
assert_exists 1 '//rule-result/result[text()="pass"]'
assert_exists 1 '//TestResult/benchmark[@href="file:xccdf.xml"]'
rm -f "$result"
}
function test_sds_tailoring {
local SDS_FILE="${srcdir}/$2"
local DATASTREAM_ID="$3"
local TAILORING_ID="$4"
local PROFILE="$5"
local result=$(mktemp)
$OSCAP info "$SDS_FILE"
$OSCAP xccdf eval --datastream-id "$DATASTREAM_ID" --tailoring-id "$TAILORING_ID" --profile "$PROFILE" --results "$result" "$SDS_FILE"
assert_exists 2 '//Rule'
assert_exists 1 '//Rule[@id="xccdf_com.example_rule_1" and @selected="true"]'
assert_exists 1 '//Rule[@id="xccdf_com.example_rule_2" and @selected="false"]'
assert_exists 2 '//rule-result'
assert_exists 1 '//rule-result[@idref="xccdf_com.example_rule_1"]'
assert_exists 1 '//rule-result[@idref="xccdf_com.example_rule_2"]'
assert_exists 1 '//rule-result[@idref="xccdf_com.example_rule_1"]/result[text()="notselected"]'
assert_exists 1 '//rule-result[@idref="xccdf_com.example_rule_2"]/result[text()="pass"]'
rm -f "$result"
}
function test_ds_continue_without_remote_resources() {
local DS="${srcdir}/$1"
local PROFILE="$2"
local result=$(mktemp)
local oval_result="test_single_rule.oval.xml.result.xml"
$OSCAP xccdf eval --oval-results --profile "$PROFILE" --results "$result" "$DS"
assert_exists 1 '//rule-result[@idref="xccdf_com.example.www_rule_test-pass"]/result[text()="pass"]'
assert_exists 1 '//rule-result[@idref="xccdf_com.example.www_rule_test-remote_res"]/result[text()="notchecked"]'
assert_exists 1 '//rule-result[@idref="xccdf_com.example.www_rule_test-pass2"]/result[text()="pass"]'
rm -f "$result" "$oval_result"
}
function test_ds_error_remote_resources() {
# --fetch-remote-resources uses internet
require_internet || return 255
local DS="${srcdir}/$1"
local PROFILE="$2"
local result=$(mktemp)
local stderr=$(mktemp)
$OSCAP xccdf eval --fetch-remote-resources --profile "$PROFILE" --results "$result" "$DS" 2>"$stderr" || ret=$?
grep -q "Downloading: https://www.example.com/security/data/oval/oval.xml.bz2 ... error" "$stderr"
grep -q "OpenSCAP Error: Download failed" "$stderr"
rm -f "$result" "$stderr"
}
# Testing.
test_init
test_run "sds_external_xccdf_in_ds" test_sds_external_xccdf_in_ds
test_run "sds_external_xccdf" test_sds_external_xccdf
test_run "sds_tailoring" test_sds_tailoring sds_tailoring sds_tailoring/sds.ds.xml scap_com.example_datastream_with_tailoring xccdf_com.example_cref_tailoring_01 xccdf_com.example_profile_tailoring
test_run "eval_simple" test_eval eval_simple/sds.xml
test_run "cpe_in_ds" test_eval cpe_in_ds/sds.xml
test_run "eval_invalid" test_invalid_eval eval_invalid/sds.xml
test_run "eval_invalid_oval" test_invalid_oval_eval eval_invalid/sds-oval.xml
test_run "eval_xccdf_id1" test_eval_id eval_xccdf_id/sds.xml scap_org.open-scap_datastream_tst scap_org.open-scap_cref_first-xccdf.xml first
test_run "eval_xccdf_id2" test_eval_id eval_xccdf_id/sds.xml scap_org.open-scap_datastream_tst scap_org.open-scap_cref_second-xccdf.xml second
test_run "eval_benchmark_id1" test_eval_benchmark_id eval_xccdf_id/sds.xml xccdf_moc.elpmaxe.www_benchmark_first first
test_run "eval_benchmark_id2" test_eval_benchmark_id eval_xccdf_id/sds.xml xccdf_moc.elpmaxe.www_benchmark_second second
test_run "eval_benchmark_id_conflict" test_eval_benchmark_id eval_benchmark_id_conflict/sds.xml xccdf_moc.elpmaxe.www_benchmark_first first
test_run "eval_just_oval" test_oval_eval eval_just_oval/sds.xml
test_run "eval_oval_id1" test_oval_eval_id eval_oval_id/sds.xml scap_org.open-scap_datastream_just_oval scap_org.open-scap_cref_scap-oval1.xml "oval:x:def:1"
test_run "eval_oval_id2" test_oval_eval_id eval_oval_id/sds.xml scap_org.open-scap_datastream_just_oval scap_org.open-scap_cref_scap-oval2.xml "oval:x:def:2"
test_run "eval_cpe" test_eval_cpe eval_cpe/sds.xml
test_run "test_eval_complex" test_eval_complex
test_run "test_ds_1_2_continue_without_remote_resources" test_ds_continue_without_remote_resources ds_continue_without_remote_resources/remote_content_1.2.ds.xml xccdf_com.example.www_profile_test_remote_res
#test_run "test_ds_1_2_error_remote_resources" test_ds_error_remote_resources ds_continue_without_remote_resources/remote_content_1.2.ds.xml xccdf_com.example.www_profile_test_remote_res
test_run "test_ds_1_3_continue_without_remote_resources" test_ds_continue_without_remote_resources ds_continue_without_remote_resources/remote_content_1.3.ds.xml xccdf_com.example.www_profile_test_remote_res
#test_run "test_ds_1_3_error_remote_resources" test_ds_error_remote_resources ds_continue_without_remote_resources/remote_content_1.3.ds.xml xccdf_com.example.www_profile_test_remote_res
test_exit
|