3 source import-common.sh
13 passphrase_file=`pwd`/acl.key
19 echo "Test 1. Invoking user '$USER' with _acl 'nobody'."
20 echo -ne 'LIST --all --with-target' | pwmc
$PWMC_ARGS acl
> result
21 cmp acl.result1 result
25 echo "Test 2. Retrieve content (fail)."
27 echo -ne 'GET c' | pwmc
$PWMC_ARGS acl
> result
28 if [ ${PIPESTATUS[1]} == 0 ]; then
29 echo "The previous command should have failed. Stopping."
37 echo "Test 3. Create new path."
38 echo -ne 'acl\tpath\tacl path value' | pwmc
$PWMC_ARGS --inquire STORE
-S acl
41 echo "Test 4. Delete _acl attribute of child (owner)."
42 echo -ne 'ATTR DELETE _acl acl\tpath' | pwmc
$PWMC_ARGS -S acl
45 echo "Test 5. Access child (_acl re-added)."
46 echo -ne 'ATTR LIST acl\tpath' | pwmc
$PWMC_ARGS acl
> result
51 echo "Test 6. Change ownership of child element."
52 echo -ne "ATTR SET _acl acl\tpath nobody,$USER" | pwmc
$PWMC_ARGS -S acl
55 echo "Test 7. Access child (not owner)."
56 echo -ne 'ATTR LIST acl\tpath' | pwmc
$PWMC_ARGS acl
> result
61 echo "Test 8. Delete child element (fail)."
63 echo -ne 'DELETE acl\tpath' | pwmc
$PWMC_ARGS acl
64 if [ ${PIPESTATUS[1]} == 0 ]; then
65 echo "The previous command should have failed. Stopping."
71 echo "Test 9. Change ownership of child element (fail)."
73 echo -ne "ATTR SET _acl acl\tpath $USER" | pwmc
$PWMC_ARGS -S acl
74 if [ ${PIPESTATUS[1]} == 0 ]; then
75 echo "The previous command should have failed. Stopping."
81 echo "Test 10. Create child element content (fail)."
83 echo -ne 'acl\tpath\tupdate' | pwmc
$PWMC_ARGS --inquire STORE acl
84 if [ ${PIPESTATUS[1]} == 0 ]; then
85 echo "The previous command should have failed. Stopping."
91 echo "Test 11. Create parent element content."
92 echo -ne 'acl\tacl value' | pwmc
$PWMC_ARGS --inquire STORE
-S acl
93 echo -ne 'GET acl' | pwmc
$PWMC_ARGS acl
> result
94 cmp acl.result11 result
98 echo "Test 12. Change cipher during save (fail)."
100 echo -ne 'NOP' | pwmc
$PWMC_ARGS -S --cipher=serpent128 acl
101 if [ ${PIPESTATUS[1]} == 0 ]; then
102 echo "The previous command should have failed. Stopping."
108 echo "Test 13. List attributes of un-owned root."
109 echo -ne 'ATTR LIST nouser' | pwmc
$PWMC_ARGS acl
> result
110 cmp acl.result13 result
114 echo "Test 14. List attributes of owned child of un-owned parent (fail)."
115 echo -ne 'attr\ta\tb\tvalue' | pwmc
$PWMC_ARGS --inquire STORE
-S acl
116 echo -ne 'ATTR SET _acl attr\ta nobody' | pwmc
$PWMC_ARGS -S acl
118 echo -ne "ATTR LIST attr\ta\tb" | pwmc
$PWMC_ARGS acl
119 if [ ${PIPESTATUS[1]} == 0 ]; then
120 echo "The previous command should have failed. Stopping."
126 echo "Test 15. List attributes of un-owned child."
127 echo -ne 'ATTR LIST attr\ta' | pwmc
$PWMC_ARGS acl
> /dev
/null
130 echo "Test 16. List attributes of un-owned root with target."
131 echo -ne 'ATTR LIST b' | pwmc
$PWMC_ARGS acl
> result
132 cmp acl.result16 result
136 echo "Test 17. List attributes of un-owned child with un-owned root target (fail)."
138 echo -ne "ATTR LIST b\tb" | pwmc
$PWMC_ARGS acl
139 if [ ${PIPESTATUS[1]} == 0 ]; then
140 echo "The previous command should have failed. Stopping."
146 echo "Test 18. List non-existant child of un-owned parent."
147 echo -ne 'new\ta\tb\tvalue' | pwmc
$PWMC_ARGS --inquire STORE
-S acl
148 echo -ne 'new2\ta\tb\tvalue' | pwmc
$PWMC_ARGS --inquire STORE
-S acl
149 echo -ne 'ATTR SET target new\ta new2\ta' | pwmc
$PWMC_ARGS -S acl
150 echo -ne 'ATTR SET _acl new2\ta nobody' | pwmc
$PWMC_ARGS -S acl
151 echo -ne 'LIST --all --with-target --verbose new\ta\tnon-existant' | pwmc
$PWMC_ARGS acl
> result
152 cmp acl.result18 result
156 echo "Test 19. List literal children of un-owned parent with target."
157 echo -ne 'LIST --all --verbose --with-target new' | pwmc
$PWMC_ARGS acl
> result
158 cmp acl.result19 result
162 echo "Test 20. Create target to visible restricted root."
163 echo -ne 'ATTR SET target zzz\ta a' | pwmc
$PWMC_ARGS -S acl
164 echo -ne 'LIST --all --verbose --with-target' | pwmc
$PWMC_ARGS acl
> result
165 cmp acl.result20 result
169 echo "Test 21. Create target to visible restricted child."
170 echo -ne 'ATTR SET _acl zzz\t!a non-existant' | pwmc
$PWMC_ARGS -S acl
171 echo -ne 'ATTR SET target newzzz\tb zzz\t!a' | pwmc
$PWMC_ARGS -S acl
172 echo -ne 'LIST --all --verbose --with-target' | pwmc
$PWMC_ARGS acl
> result
173 cmp acl.result21 result