source: examples/python_tests/access_rt2/run_test @ 2e9455f

mei_rt2
Last change on this file since 2e9455f was 2e9455f, checked in by Mei <mei@…>, 11 years ago

1) added namespace
2) tweak ?This,
3) allowing linking role/oset as constraining conditions
4) adding access_tests regression testing that uses GENI's access policy
5) added couple multi contexts regression tests
6) add compression/uncompression calls to abac_encode_string/abac_decode_string
(libstrongwan only allows 512 char for attribute rule storage)
7) add attribute_now option to creddy that takes a whole char string for attribute
rule

  • Property mode set to 100755
File size: 730 bytes
Line 
1#!/bin/sh
2
3env |grep SKIP
4
5echo '---setup principals'
6env keystore=`pwd` ./setup.py 1>/dev/null 2>& 1
7
8echo '---setup attributes'
9env keystore=`pwd` ./attr.py 1>access.log 2>& 1
10
11echo '---run queries'
12
13# Make prover queries
14g_cmd_sha=`grep "cmd1:" query.py |sed "s/cmd1://g" `
15g_cmd_cn=`grep "cmd2:" query.py |sed "s/cmd2://g" `
16
17echo '...with sha'
18eval $g_cmd_sha 2>/dev/null 1 > access.sha
19
20echo '...with cn'
21eval $g_cmd_cn 1>access.cn 2>&1
22
23result=`diff -I "Restoring file" -I "YAP 6.3" access.cn access.save`
24
25if [ $? -eq 0 ]; then
26    if [ "$result" = "" ]; then
27       echo "   PASSED"
28    else
29       echo "   ERROR:access_rt2 test result differs!!!"
30    fi
31else
32    echo "   ERROR:access_rt2 test result differs!!!"
33fi
34
35
Note: See TracBrowser for help on using the repository browser.