File

tests/test_util_json.sh @ 7567:495de404a8ae

ejabberdsql2prosody: rename variable 'host' to prevent shadowing upvalue [luacheck] Functions roster(), roster_pending(), roster_group(), private_storage() and offline_msg() have argument named "host", which used to shadow upvalue of this variable before this change. Instead of renaming this argument, let's rename the variable to match what the script says in usage: Usage: ejabberdsql2prosody.lua filename.txt hostname
author Anton Shestakov <av6@dwimlabs.net>
date Fri, 12 Aug 2016 13:44:47 +0800
parent 7237:472736b583fb
line wrap: on
line source

#!/bin/bash

export LUA_PATH="../?.lua;;"
export LUA_CPATH="../?.so;;"

#set -x

if ! which "$RUNWITH"; then
	echo "Unable to find interpreter $RUNWITH";
	exit 1;
fi

if ! $RUNWITH -e 'assert(require"util.json")' 2>/dev/null; then
	echo "Unable to find util.json";
	exit 1;
fi

FAIL=0

for f in json/pass*.json; do
	if ! $RUNWITH -e 'local j=require"util.json" assert(j.decode(io.read("*a"))~=nil)' <"$f" 2>/dev/null; then
		echo "Failed to decode valid JSON: $f";
		FAIL=1
	fi
done

for f in json/fail*.json; do
	if ! $RUNWITH -e 'local j=require"util.json" assert(j.decode(io.read("*a"))==nil)' <"$f" 2>/dev/null; then
		echo "Invalid JSON decoded without error: $f";
		FAIL=1
	fi
done

if [ "$FAIL" == "1" ]; then
	echo "JSON tests failed"
	exit 1;
fi

exit 0;