mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
25 lines
478 B
Nix
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
|
||
|
''
|