From 429cbc660ae14d4998715803b44c71abf0e4a339 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 23 Dec 2021 03:09:07 +0100 Subject: Add support for JSON format --- test/json-invalid-types.test | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 test/json-invalid-types.test (limited to 'test/json-invalid-types.test') diff --git a/test/json-invalid-types.test b/test/json-invalid-types.test new file mode 100755 index 0000000..0397c05 --- /dev/null +++ b/test/json-invalid-types.test @@ -0,0 +1,36 @@ +## -*- sh -*- + +DATASRC=$top_srcdir/test/data +DATAOUT=$top_builddir/test/data +TESTFILE0=data.bplist +TESTFILE1=7.plist +TESTFILE2=uid.bplist + +if ! test -d "$DATAOUT"; then + mkdir -p $DATAOUT +fi + +export PLIST_JSON_DEBUG=1 + +echo "Converting (failure expected)" +STDERR=`$top_builddir/tools/plistutil -f json -i $DATASRC/$TESTFILE0 -o /dev/null 2>&1` +echo "$STDERR" +if ! echo "$STDERR" |grep "PLIST_DATA type is not valid for JSON format"; then + exit 1 +fi + +echo "Converting (failure expected)" +STDERR=`$top_builddir/tools/plistutil -f json -i $DATASRC/$TESTFILE1 -o /dev/null 2>&1` +echo "$STDERR" +if ! echo "$STDERR" |grep "PLIST_DATE type is not valid for JSON format"; then + exit 2 +fi + +echo "Converting (failure expected)" +STDERR=`$top_builddir/tools/plistutil -f json -i $DATASRC/$TESTFILE2 -o /dev/null 2>&1` +echo "$STDERR" +if ! echo "$STDERR" |grep "PLIST_UID type is not valid for JSON format"; then + exit 3 +fi + +exit 0 -- cgit v1.1-32-gdbae