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