nixpkgs/pkgs/test/cue/default.nix
2022-12-08 22:19:23 +01:00

25 lines
478 B
Nix

{ writeCueValidator, runCommand, writeText, ... }:
let
validator = writeCueValidator
(writeText "schema.cue" ''
#Def1: {
field1: string
}
'')
{ document = "#Def1"; };
in runCommand "cue-validation" {} ''
cat > valid.json <<EOF
{ "field1": "abc" }
EOF
cat > invalid.json <<EOF
{ "field2": "abc" }
EOF
${validator} valid.json
if ${validator} invalid.json; then
echo "this example should fail"
exit 1
fi
touch $out
''