source: examples/creddy_prover_tests/file_read_rt2/run_query @ 519e487

mei_rt2mei_rt2_fix_1
Last change on this file since 519e487 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
Line 
1
2# file_read_rt2_typed
3
4pwd=`pwd`
5
6eloc=${ABAC_PROVER_PATH}
7keyloc=$pwd
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
18## dump all credentials --
19$eloc/abac_prover_yap  --keystore $keyloc --dump creds_dump
20
21#[keyid:Alpha].role:read([urn:'file://fileA']) <-?- [keyid:Bob] (yes)
22echo " "
23echo "===good============ alpha.read(fileA) <- Bob"
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)
27echo " "
28echo "===bad============ alpha.read(fileA) <- Maryann"
29$eloc/abac_prover_yap  --keystore $keyloc --role "$read_fileA" --principal "$maryann_prin"
30
Note: See TracBrowser for help on using the repository browser.