source: examples/creddy_prover_tests/alice_rt1/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: 938 bytes
Line 
1
2# alice_rt1_typed
3
4pwd=`pwd`
5
6eloc=${ABAC_PROVER_PATH}
7keyloc=$pwd
8
9alice=`creddy --keyid --cert Alice_ID.pem`
10party=`creddy --keyid --cert Party_ID.pem`
11tea=`creddy --keyid --cert Tea_ID.pem`
12hatter=`creddy --keyid --cert Hatter_ID.pem`
13marchhare=`creddy --keyid --cert MarchHare_ID.pem`
14dormouse=`creddy --keyid --cert Dormouse_ID.pem`
15
16party_guests="[keyid:$party].role:guests"
17dormouse_prin="[keyid:$dormouse]"
18hatter_prin="[keyid:$hatter]"
19
20## dump all credentials
21$eloc/abac_prover_yap  --keystore $keyloc --dump creds_dump
22
23#[keyid:Party].role:guests <-?- [keyid:dormouse]
24echo "  "
25echo "===good============ Party.guests <- dourmouse"
26$eloc/abac_prover_yap  --keystore $keyloc --role "$party_guests" --principal "$dormouse_prin"
27
28#[keyid:Party].role:guests <-?- [keyid:hatter]
29echo "  "
30echo "===bad============ Party.guests <- hatter"
31$eloc/abac_prover_yap  --keystore $keyloc --role "$party_guests" --principal "$hatter_prin"
32
Note: See TracBrowser for help on using the repository browser.