jenkins-job-builder/test.sh
James E. Blair 1b37d05edb Remove example config.
Change test.sh to expect a config directory, symlinked to
config files outside of this project.

Change-Id: I84067b494bd8e9ce28c9e74c3556ec78000d83e8
Reviewed-on: https://review.openstack.org/11161
Approved: James E. Blair <corvus@inaugust.com>
Reviewed-by: James E. Blair <corvus@inaugust.com>
Tested-by: Jenkins
2012-08-10 18:49:34 +00:00

32 lines
1.1 KiB
Bash
Executable File

#!/bin/bash
# A simple script to verify that the XML output is unaltered after a change.
# First, symlink "config" to the directory containing your config files
# (eg openstack-ci-puppet/modules/openstack_project/files/jenkins_job_builder/config)
# Before you start work, run "./test.sh save".
# As you test your change, run "./test.sh" to see differences in XML output.
mkdir -p /tmp/jenkins_jobs_test/saved
mkdir -p /tmp/jenkins_jobs_test/test
if [ "$1" == "save" ]
then
rm -f /tmp/jenkins_jobs_test/saved/*
jenkins-jobs test -o /tmp/jenkins_jobs_test/saved/ config
else
rm -f /tmp/jenkins_jobs_test/test/*
jenkins-jobs test -o /tmp/jenkins_jobs_test/test/ config
for x in `(cd /tmp/jenkins_jobs_test/saved && find -type f)`
do
if ! diff -u /tmp/jenkins_jobs_test/saved/$x /tmp/jenkins_jobs_test/test/$x >/dev/null 2>&1
then
echo "============================================================"
echo $x
echo "------------------------------------------------------------"
fi
diff -u /tmp/jenkins_jobs_test/saved/$x /tmp/jenkins_jobs_test/test/$x
done
fi