Merge "make run_tests.sh run devstack unit tests"
This commit is contained in:
commit
99225de8cf
47
run_tests.sh
47
run_tests.sh
@ -18,47 +18,18 @@
|
|||||||
PASSES=""
|
PASSES=""
|
||||||
FAILURES=""
|
FAILURES=""
|
||||||
|
|
||||||
# Check the return code and add the test to PASSES or FAILURES as appropriate
|
|
||||||
# pass_fail <result> <expected> <name>
|
|
||||||
function pass_fail {
|
|
||||||
local result=$1
|
|
||||||
local expected=$2
|
|
||||||
local test_name=$3
|
|
||||||
|
|
||||||
if [[ $result -ne $expected ]]; then
|
|
||||||
FAILURES="$FAILURES $test_name"
|
|
||||||
else
|
|
||||||
PASSES="$PASSES $test_name"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
if [[ -n $@ ]]; then
|
|
||||||
FILES=$@
|
|
||||||
else
|
|
||||||
LIBS=`find lib -type f | grep -v \.md`
|
|
||||||
SCRIPTS=`find . -type f -name \*\.sh`
|
|
||||||
EXTRA="functions functions-common stackrc openrc exerciserc eucarc"
|
|
||||||
FILES="$SCRIPTS $LIBS $EXTRA"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Running bash8..."
|
|
||||||
|
|
||||||
tox -ebashate
|
|
||||||
pass_fail $? 0 bash8
|
|
||||||
|
|
||||||
|
|
||||||
# Test that no one is trying to land crazy refs as branches
|
# Test that no one is trying to land crazy refs as branches
|
||||||
|
|
||||||
echo "Ensuring we don't have crazy refs"
|
for testfile in tests/test_*.sh; do
|
||||||
|
$testfile
|
||||||
REFS=`grep BRANCH stackrc | grep -v -- '-master'`
|
if [[ $? -eq 0 ]]; then
|
||||||
rc=$?
|
PASSES="$PASSES $testfile"
|
||||||
pass_fail $rc 1 crazy-refs
|
else
|
||||||
if [[ $rc -eq 0 ]]; then
|
FAILURES="$FAILURES $testfile"
|
||||||
echo "Branch defaults must be master. Found:"
|
fi
|
||||||
echo $REFS
|
done
|
||||||
fi
|
|
||||||
|
|
||||||
|
# Summary display now that all is said and done
|
||||||
echo "====================================================================="
|
echo "====================================================================="
|
||||||
for script in $PASSES; do
|
for script in $PASSES; do
|
||||||
echo PASS $script
|
echo PASS $script
|
||||||
|
24
tests/test_refs.sh
Executable file
24
tests/test_refs.sh
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||||
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||||
|
# License for the specific language governing permissions and limitations
|
||||||
|
# under the License.
|
||||||
|
|
||||||
|
|
||||||
|
echo "Ensuring we don't have crazy refs"
|
||||||
|
|
||||||
|
REFS=`grep BRANCH stackrc | grep -v -- '-master'`
|
||||||
|
rc=$?
|
||||||
|
if [[ $rc -eq 0 ]]; then
|
||||||
|
echo "Branch defaults must be master. Found:"
|
||||||
|
echo $REFS
|
||||||
|
exit 1
|
||||||
|
fi
|
Loading…
x
Reference in New Issue
Block a user