source: examples/creddy_prover_tests/file_read_rt2/run_query @ 669b481

mei_rt2mei_rt2_fix_1
Last change on this file since 669b481 was 5110d42, checked in by Mei <mei@…>, 12 years ago

1) reorganized the test directory to include python tests
2) attribute via api and principal via api from python scripts is

working (although there is a annoying seg fault at the very end
that must be related to something not been dup()ed.. need to wait
for c example to debug it)

3) able to query via api
4) replicated access_rt2 example in python and the query result matches
5) expanded api to make it easier to generate rt2 structure

  • Property mode set to 100755
File size: 932 bytes
RevLine 
[10e1588]1
[9502c50]2# file_read_rt2_typed
[10e1588]3
[c469edf]4pwd=`pwd`
5
[5110d42]6eloc=${ABAC_PROVER_PATH}
[c469edf]7keyloc=$pwd
[10e1588]8
9alpha=`creddy --keyid --cert $keyloc/Alpha_ID.pem`
10bob=`creddy --keyid --cert $keyloc/Bob_ID.pem`
11maryann=`creddy --keyid --cert $keyloc/Maryann_ID.pem`
12alpha=`creddy --keyid --cert $keyloc/Alpha_ID.pem`
13
14read_fileA="[keyid:$alpha].role:read([urn:'file://fileA'])"
15bob_prin="[keyid:$bob]"
16maryann_prin="[keyid:$maryann]"
17
[9502c50]18## dump all credentials --
[e88c95b]19$eloc/abac_prover_yap  --keystore $keyloc --dump creds_dump
[10e1588]20
21#[keyid:Alpha].role:read([urn:'file://fileA']) <-?- [keyid:Bob] (yes)
[36b100a]22echo " "
[9502c50]23echo "===good============ alpha.read(fileA) <- Bob"
[10e1588]24$eloc/abac_prover_yap  --keystore $keyloc --role "$read_fileA" --principal "$bob_prin"
25
26#[keyid:Alpha].role:read([urn:'file://fileA']) <-?- [keyid:Maryann] (no)
[36b100a]27echo " "
[9502c50]28echo "===bad============ alpha.read(fileA) <- Maryann"
[10e1588]29$eloc/abac_prover_yap  --keystore $keyloc --role "$read_fileA" --principal "$maryann_prin"
30
Note: See TracBrowser for help on using the repository browser.