Created
December 8, 2015 13:07
-
-
Save yosshy/521932deda0b946e88c7 to your computer and use it in GitHub Desktop.
functional test of oslo.policy with keystone api
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Role: s1, s2, s3 and s4 are defined. | |
for s1 in add remove; do | |
for s2 in add remove; do | |
for s3 in add remove; do | |
for s4 in add remove; do | |
for s5 in add remove; do | |
for s6 in add remove; do | |
# Tenant: admin | |
# User: admin | |
source keystonerc_admin | |
openstack role $s1 --project sample --user sample s1 >& /dev/null | |
openstack role $s2 --project sample --user sample s2 >& /dev/null | |
openstack role $s3 --project sample --user sample s3 >& /dev/null | |
openstack role $s4 --project sample --user sample s4 >& /dev/null | |
openstack role $s5 --project sample --user sample s5 >& /dev/null | |
openstack role $s6 --project sample --user sample s6 >& /dev/null | |
openstack user role list --project sample sample | |
test $s1 == "add" && ss1="True" || ss1="False" | |
test $s2 == "add" && ss2="True" || ss2="False" | |
test $s3 == "add" && ss3="True" || ss3="False" | |
test $s4 == "add" && ss4="True" || ss4="False" | |
test $s5 == "add" && ss5="True" || ss5="False" | |
test $s6 == "add" && ss6="True" || ss6="False" | |
for e1 in "or" "and"; do | |
for e2 in "or" "and"; do | |
for e3 in "or" "and"; do | |
for e4 in "or" "and"; do | |
for e5 in "or" "and"; do | |
EXPECTED=$(python -c "print($ss1 $e1 $ss2 $e2 $ss3 $e3 $ss4 $e4 $ss5 $e5 $ss6)") | |
LINE="role:s1 $e1 role:s2 $e2 role:s3 $e3 role:s4 $e4 role:s5 $e5 role:s6" | |
echo -n "$LINE (should be $EXPECTED): " | |
sed -e "s/__TEMP__/$LINE/" /tmp/policy.json.orig | sudo tee /etc/keystone/policy.json >& /dev/null | |
sleep 0.1 | |
# Tenant: sample | |
# User: sample | |
source keystonerc_sample | |
oscurl -s keystonev3 -p /users/ -t admin >& /dev/null && echo True || (echo False; :) | |
#sleep 0.1 | |
done | |
done | |
done | |
done | |
done | |
done | |
done | |
done | |
done | |
done | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 932bf48856f345be81af257c3616b9e9 | s1 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| bd9c438aa1fa4c398b2ae1fbe4defc78 | s2 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| b907d1e97a544d608246e10fe1b608b0 | s3 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| dbc42f57cb9645d8ba2e7cb24210a2ca | s4 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 4fc0a8f5459649dca81441bb10d60c13 | s5 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
| 2d001d473d9f42f79f803c215fd52663 | s6 | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be True): True | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
+----------------------------------+----------+---------+--------+ | |
| ID | Name | Project | User | | |
+----------------------------------+----------+---------+--------+ | |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ | sample | sample | | |
+----------------------------------+----------+---------+--------+ | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 or role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 or role:s3 and role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 or role:s4 and role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 or role:s5 and role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 or role:s6 (should be False): False | |
role:s1 and role:s2 and role:s3 and role:s4 and role:s5 and role:s6 (should be False): False |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment