mirror of
https://github.com/NixOS/nix
synced 2025-07-07 01:51:47 +02:00
* Add a test for nix-log2xml.
This commit is contained in:
parent
458820df6c
commit
e48bd8c8b5
7 changed files with 41 additions and 8 deletions
24
tests/logging.sh
Normal file
24
tests/logging.sh
Normal file
|
@ -0,0 +1,24 @@
|
|||
source common.sh
|
||||
|
||||
rm -f $NIX_STATE_DIR/var/nix/
|
||||
$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?
|
||||
if test -n "$xmllint"; then
|
||||
$xmllint --noout $TEST_ROOT/log.xml
|
||||
fi
|
||||
|
||||
# Convert to HTML.
|
||||
if test -n "$xsltproc"; then
|
||||
(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>.*echo FOO" $TEST_ROOT/log.html
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue