source: tests/scaling_tests/daisychain/likes_python/run_one @ ec550f7

abac0-leakabac0-meimei-idtvf-new-xml
Last change on this file since ec550f7 was ec550f7, checked in by Mei <mei@…>, 11 years ago

1) reworked how API doc is generated
2) tweak top level Makefile.am
3) loading issuer principal as side-effect of loading

an attribute credentials

4) add examples of GENI specific attribute credentials

and principal certificates into the regression testing

5) rename examples to tests

  • Property mode set to 100755
File size: 1.1 KB
Line 
1#!/bin/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
23env keystore=`pwd` ABAC_CN=1 ./query.py 1>likes.tmp 2> likes.time
24
25if [ $noise -eq 0 ] ; then
26    result=`egrep -c "success" likes.tmp 2>/dev/null`
27    if [ $result -eq 202 ]; then
28       echo "   PASSED"
29## zap out all those fake BADs
30       sed -ibak 's/BAD_/fakebad_/g' likes.time
31       exit 0
32    else 
33       echo "   ERROR"
34       exit 1
35    fi
36fi
37
38s=`grep -c "success" likes.tmp 2>/dev/null`
39f=`grep -c "failure" likes.tmp 2>/dev/null `
40if [ $s -ne 101 ] ; then
41    echo "   ERROR"
42    exit 1
43fi
44
45if [ $f  -ne 101 ] ; then
46    echo "   ERROR"
47    exit 1
48fi
49
50echo "   PASSED"
51
Note: See TracBrowser for help on using the repository browser.