source: tests/scaling_tests/daisychain/likes_python/run_one @ 3c30b59

abac0-leakabac0-mei
Last change on this file since 3c30b59 was 3c30b59, checked in by Mei <mei@…>, 11 years ago

1) add in new refactored regression testing directory
2) undo the abac.hh/ABAC.hh api changes
3) merged with Ted's changes to attribute format/nickname/issuer processing

  • Property mode set to 100755
File size: 1.4 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 "GOOD" likes.tmp 2>/dev/null`
27    if [ $result -eq 202 ]; then
28       echo "GOOD:scaling_tests/daisychain/likes_python:$noise:query result matched"
29## zap out all those fake BADs
30       sed -ibak 's/BAD_/fakebad_/g' likes.time
31       exit 0
32    else 
33       echo "BAD:scaling_tests/daisychain/likes_python:$noise:number of successful query is not right"
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 "BAD:scaling_tests/daisychain/likes_python:$noise:number of success is not right"
42    exit 1
43fi
44
45if [ $f  -ne 101 ] ; then
46    echo "BAD:scaling_tests/daisychain/likes_python:$noise:number of expeceted failure is not right"
47    exit 1
48fi
49
50echo "GOOD:scaling_tests/daisychain/likes_python:$noise:expected result"
51
Note: See TracBrowser for help on using the repository browser.