about summary refs log tree commit diff
path: root/pkgs/by-name/xu/xunit-viewer/test/example.nix
blob: 574b9d784951e488a3b185b3d8281d7f163a27ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ xunit-viewer, runCommand, ... }:

runCommand "test-xunit-viewer" {
  nativeBuildInputs = [ xunit-viewer ];
} ''
  mkdir $out
  xunit-viewer -r ${./example.junit.xml} -o $out/index.html
  ( set -x
    grep '<body' $out/index.html
    # Can't easily grep for parts of the original data, because it ends up
    # embedded as base64 encoded data (and slightly modified?).
    # We'd have to really dissect it or render it with a browser.
    # Fortunately, we've already caught the most severe packaging problems
    # with just this.
  )
''