Commit 273b7f59 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Fix parsing script

parent d66e31e6
Loading
Loading
Loading
Loading
Loading
+14 −12
Original line number Diff line number Diff line
@@ -24,37 +24,39 @@ if [ ${TOSCA_PARSER} == "Cloudnet-TOSCA-toolbox" ] ; then
	CLOUDNET_BINDIR=../../bin  
	. ${CLOUDNET_BINDIR}/cloudnet_rc.sh
	
	res=0
	finalResult=0
	for i in *.yaml ; do
    
		result=0
		echo "Cloudnet-TOSCA-toolbox: Validating file $i..." >> debugCloudnet.log
		../../bin/toscaware/toscaware $i &>> debugCloudnet.log
		../../bin/toscaware/toscaware $i &> debug.log
		#docker ${DOCKER_OPTS} run --user "$(id -u)":"$(id -g)" -v "${PWD}/${TOSCA_PARSER_FOLDER}:/work" -v "${PWD}/${TOSCA_PARSER_FOLDER}/bin/cloudnet:/cloudnet" --workdir="/work" --rm --attach=stdin --attach=stdout --attach=stderr cloudnet/toscaware python ${PYTHON_OPTS} /cloudnet/tosca/tosca2cloudnet.py --template-file "$i" ${TOSCAWARE_OPTS}
		
		#docker ${DOCKER_OPTS} run --user "$(id -u)":"$(id -g)" --rm --attach=stdin --attach=stdout --attach=stderr cloudnet/toscaware python ${PYTHON_OPTS} /cloudnet/tosca/tosca2cloudnet.py --template-file "$1" ${TOSCAWARE_OPTS}
		#./${TOSCA_PARSER_FOLDER}/bin/toscaware/toscaware $i $> debug.log

		if [ $? == 2 ] ; then

			echo "Cloudnet-TOSCA-toolbox: ++++ Issues found with TOSCA file syntax in $i"
			grep "ERROR" < debugCloudnet.log
			res=1
		elif  [ $? == 0 ] ; then
			grep "ERROR" < debug.log
			finalResult=1
		else
			echo "Cloudnet-TOSCA-toolbox: ++++ TOSCA parser finished validation of $i"
			#Check the debug messages, if there's at least one ERROR then res=1
			if [ `grep "ERROR" < debugCloudnet.log | wc -l` == 0 ] ; then
			if [ `grep "ERROR" < debug.log | wc -l` == 0 ] ; then
				echo "++++ TOSCA parser finished validation of $i with no errors"
			else
				echo "Cloudnet-TOSCA-toolbox: ++++ TOSCA parser finished validation of $i with errors"
				grep "ERROR" < debugCloudnet.log
				res = 1
				grep "ERROR" < debug.log
				finalResult=1
			fi
		fi 
		
		cat debug.log >> debugCloudnet.log
	done
	
	cp debugCloudnet.log ../../../debugCloudnet.log
elif [ ${TOSCA_PARSER} == "Puccini" ] ; then
	res=0
	finalResult=0
	echo "Puccini: Validation starting ..."
		
	docker run --rm -v "${PWD}:/sol001" puccini ./sol001/scripts/puccini_parse.sh &> debugPuccini.log
@@ -69,9 +71,9 @@ elif [ ${TOSCA_PARSER} == "Puccini" ] ; then
			#	grep "PROBLEMS" < debug.log
			#	res=1
			#fi
			res=1
			finalResult=1
	fi 
		
fi

exit $res
 No newline at end of file
exit $finalResult
 No newline at end of file