summaryrefslogtreecommitdiffstats
path: root/tools/test.sh
blob: a25a6bea92f70727f57a2f48ad8638e2ba0fd83d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/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-infra/config/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