source: tests/scaling_tests/daisychain/likes_python/run_one

Last change on this file was b838398, checked in by Ted Faber <faber@…>, 11 years ago

Make sure that python can find test_util module

  • Property mode set to 100755
File size: 1.6 KB
Line 
1#!/usr/bin/env sh
2
3noise=$1
4
5if [ -z "$noise" ]; then
6    exit
7fi 
8
9echo "---running daisychain likes_python $noise scaling"
10
11rm -rf likes_$noise
12mkdir likes_$noise
13sed "s/#VAL#/$noise/" base/SETUP.py > likes_$noise/setup.py
14sed "s/#VAL#/$noise/" base/QUERY.py > likes_$noise/query.py
15sed "s/#VAL#/$noise/" base/ATTR.py > likes_$noise/attr.py
16sed "s/#VAL#/$noise/" base/PROVE.sh > likes_$noise/prove.sh
17
18cd likes_$noise
19chmod +x setup.py attr.py query.py
20./setup.py 1> /dev/null 2>&1
21env keystore=`pwd` ./attr.py 1> attr.log 2>& 1
22
23# MY_ENV is an env command that sets the environment up so (among other things)
24# query can find the test_util module.  MY_ENV is set in the testing makefile
25# and abac.mk
26$MY_ENV keystore=`pwd` ABAC_CN=1 ./query.py 1>likes.tmp 2> likes.time
27
28if [ $noise -eq 0 ] ; then
29    result=`egrep -c "GOOD" likes.tmp 2>/dev/null`
30    if [ $result -eq 202 ]; then
31       echo "GOOD:scaling_tests/daisychain/likes_python:$noise:query result matched"
32## zap out all those fake BADs
33       sed -ibak 's/BAD_/fakebad_/g' likes.time
34       exit 0
35    else 
36       echo "BAD:scaling_tests/daisychain/likes_python:$noise:number of successful query is not right"
37       exit 1
38    fi
39fi
40
41s=`grep -c "success" likes.tmp 2>/dev/null`
42f=`grep -c "failure" likes.tmp 2>/dev/null `
43if [ $s -ne 101 ] ; then
44    echo "BAD:scaling_tests/daisychain/likes_python:$noise:number of success is not right"
45    exit 1
46fi
47
48if [ $f  -ne 101 ] ; then
49    echo "BAD:scaling_tests/daisychain/likes_python:$noise:number of expeceted failure is not right"
50    exit 1
51fi
52
53echo "GOOD:scaling_tests/daisychain/likes_python:$noise:expected result"
54
Note: See TracBrowser for help on using the repository browser.