summaryrefslogtreecommitdiff
path: root/cc/scripts/verify_all
diff options
context:
space:
mode:
authorArnaud Simon <arnaudsimon@apache.org>2008-06-30 13:53:48 +0000
committerArnaud Simon <arnaudsimon@apache.org>2008-06-30 13:53:48 +0000
commit9cf0d38fe457a52536ec6418823fa7f37709c767 (patch)
tree006d59c51863aa5d4978c832a860ffec82d159cd /cc/scripts/verify_all
parent89b4fce1cd32afc56947222a6ecbeec70336f34d (diff)
downloadqpid-python-9cf0d38fe457a52536ec6418823fa7f37709c767.tar.gz
QPID-1157: Added cc example automation scripts
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@672766 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cc/scripts/verify_all')
-rwxr-xr-xcc/scripts/verify_all126
1 files changed, 126 insertions, 0 deletions
diff --git a/cc/scripts/verify_all b/cc/scripts/verify_all
new file mode 100755
index 0000000000..fcb38f3709
--- /dev/null
+++ b/cc/scripts/verify_all
@@ -0,0 +1,126 @@
+#!/bin/sh
+###########################################################
+#Licensed to the Apache Software Foundation (ASF) under one
+#or more contributor license agreements. See the NOTICE file
+#distributed with this work for additional information
+#regarding copyright ownership. The ASF licenses this file
+#to you 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.
+###########################################################
+
+cleanup()
+{
+ echo "******************************************************"
+ echo "Cleanup"
+ echo "******************************************************"
+ for PID in `ps aux | grep 'qpidd'|grep 'broker.log'|grep -v 'grep'|awk '{ print $2 }'`
+ do
+ kill -9 $PID
+ done
+}
+
+run_broker()
+{
+ echo "******************************************************"
+ echo "Starting C++ broker"
+ echo "******************************************************"
+ echo ""
+ $CC_HOME/cpp/src/qpidd -t -d --auth no --no-data-dir --log-output $CC_HOME/broker.log
+}
+
+stop_broker()
+{
+ echo "******************************************************"
+ echo "Stopping the C++ broker"
+ echo "******************************************************"
+ echo ""
+ $CC_HOME/cpp/src/qpidd -q
+}
+
+verify()
+{
+ #echo "arg " $2 " path: " $1
+ for dir in $(find $1 -mindepth 1 -maxdepth 1 -type d -not -name '*.svn' -not -name $3 )
+ do
+ echo $dir
+ for script in $(find $dir -mindepth 1 -maxdepth 1 -type f -name $2 -not -name '*.*')
+ do
+ # echo "script:" $script
+ cleanup
+ run_broker
+ $CC_HOME/cc/scripts/verify $script >> $CC_HOME/script.log 2>&1
+ killall 'verify'
+ stop_broker
+ done
+done
+}
+
+run_python_python()
+{
+echo "-----------<Running Python/Python combination>---------"
+verify $CC_HOME/python/examples "verify" "xml-exchange"
+echo "-----------</Running Python/Python combination>---------"
+echo ""
+}
+
+
+run_cpp_cpp()
+{
+echo "-----------<Running C++/C++ combination>---------"
+verify $CC_HOME/cpp/examples "verify" "*.svn"
+echo "-----------</Running C++/C++ combination>--------"
+echo ""
+}
+
+run_python_cpp_comb()
+{
+echo "-----------<Running Python/C++ combination>---------"
+verify $CC_HOME/cpp/examples "verify_cpp_python" "*.svn"
+verify $CC_HOME/cpp/examples "verify_python_cpp" "*.svn"
+echo "-----------</Running Python/C++ combination>--------"
+echo ""
+}
+
+
+run_java_java()
+{
+echo "-----------<Running Java/Java combination>---------"
+verify $CC_HOME/java/client/example/src/main/java/org/apache/qpid/example/jmsexample "verify" "*.svn"
+echo "-----------</Running Java/Java combination>--------"
+echo ""
+}
+
+run_java_cpp_comb()
+{
+echo "-----------<Running Java/C++ combination>---------"
+verify $CC_HOME/java/client/example/src/main/java/org/apache/qpid/example/jmsexample "verify_java_cpp" "*.svn"
+verify $CC_HOME/java/client/example/src/main/java/org/apache/qpid/example/jmsexample "verify_cpp_java" "*.svn"
+echo "-----------</Running Java/C++ combination>--------"
+echo ""
+}
+
+run_java_python_comb()
+{
+echo "-----------<Running Java/Python combination>---------"
+verify $CC_HOME/java/client/example/src/main/java/org/apache/qpid/example/jmsexample "verify_java_python" "*.svn"
+verify $CC_HOME/java/client/example/src/main/java/org/apache/qpid/example/jmsexample "verify_python_java" "*.svn"
+echo "-----------</Running Java/Python combination>--------"
+echo ""
+}
+
+run_python_python
+run_python_cpp_comb
+run_cpp_cpp
+run_java_java
+run_java_cpp_comb
+run_java_python_comb