nix-gh/tests/logging.sh

24 lines
719 B
Bash
Raw Normal View History

2006-03-01 14:25:08 +01:00
source common.sh
$nixstore --gc
# Produce an escaped log file.
$nixstore --log-type escapes -r -vv $($nixinstantiate dependencies.nix) 2> $TEST_ROOT/log.esc
# Convert it to an XML representation.
$TOP/src/nix-log2xml/nix-log2xml < $TEST_ROOT/log.esc > $TEST_ROOT/log.xml
# Is this well-formed XML?
2006-03-01 17:03:32 +01:00
if test "$xmllint" != "false"; then
2006-03-01 15:17:00 +01:00
$xmllint $xmlflags --noout $TEST_ROOT/log.xml
2006-03-01 14:25:08 +01:00
fi
# Convert to HTML.
2006-03-01 17:03:32 +01:00
if test "$xsltproc" != "false"; then
2006-03-01 14:25:08 +01:00
(cd $TOP/src/nix-log2xml && $xsltproc mark-errors.xsl - | $xsltproc log2html.xsl -) < $TEST_ROOT/log.xml > $TEST_ROOT/log.html
# Ideally we would check that the generated HTML is valid...
# A few checks...
grep "<li>.*<code>.*FOO" $TEST_ROOT/log.html
2006-03-01 14:25:08 +01:00
fi